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.
17 lines
229 B
C
17 lines
229 B
C
/*
|
|
* AD5504 SPI DAC driver
|
|
*
|
|
* Copyright 2011 Analog Devices Inc.
|
|
*
|
|
* Licensed under the GPL-2.
|
|
*/
|
|
|
|
#ifndef SPI_AD5504_H_
|
|
#define SPI_AD5504_H_
|
|
|
|
struct ad5504_platform_data {
|
|
u16 vref_mv;
|
|
};
|
|
|
|
#endif /* SPI_AD5504_H_ */
|