forked from Qortal/Brooklyn
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
27 lines
675 B
C
27 lines
675 B
C
/*
|
|
* STMicroelectronics sensors platform-data driver
|
|
*
|
|
* Copyright 2013 STMicroelectronics Inc.
|
|
*
|
|
* Denis Ciocca <denis.ciocca@st.com>
|
|
*
|
|
* Licensed under the GPL-2.
|
|
*/
|
|
|
|
#ifndef ST_SENSORS_PDATA_H
|
|
#define ST_SENSORS_PDATA_H
|
|
|
|
/**
|
|
* struct st_sensors_platform_data - Platform data for the ST sensors
|
|
* @drdy_int_pin: Redirect DRDY on pin 1 (1) or pin 2 (2).
|
|
* Available only for accelerometer and pressure sensors.
|
|
* Accelerometer DRDY on LSM330 available only on pin 1 (see datasheet).
|
|
* @open_drain: set the interrupt line to be open drain if possible.
|
|
*/
|
|
struct st_sensors_platform_data {
|
|
u8 drdy_int_pin;
|
|
bool open_drain;
|
|
};
|
|
|
|
#endif /* ST_SENSORS_PDATA_H */
|