mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 06:44:18 +00:00
2a709f28fa
* 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.
21 lines
410 B
C
21 lines
410 B
C
/*
|
|
* AD7298 SPI ADC driver
|
|
*
|
|
* Copyright 2011 Analog Devices Inc.
|
|
*
|
|
* Licensed under the GPL-2.
|
|
*/
|
|
|
|
#ifndef __LINUX_PLATFORM_DATA_AD7298_H__
|
|
#define __LINUX_PLATFORM_DATA_AD7298_H__
|
|
|
|
/**
|
|
* struct ad7298_platform_data - Platform data for the ad7298 ADC driver
|
|
* @ext_ref: Whether to use an external reference voltage.
|
|
**/
|
|
struct ad7298_platform_data {
|
|
bool ext_ref;
|
|
};
|
|
|
|
#endif /* IIO_ADC_AD7298_H_ */
|