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.
25 lines
580 B
C
25 lines
580 B
C
/*
|
|
* Copyright (C) 2012 Samsung Electronics Co.Ltd
|
|
* Author: Joonyoung Shim <jy0922.shim@samsung.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundationr
|
|
*/
|
|
|
|
#ifndef __LINUX_MMS114_H
|
|
#define __LINUX_MMS114_H
|
|
|
|
struct mms114_platform_data {
|
|
unsigned int x_size;
|
|
unsigned int y_size;
|
|
unsigned int contact_threshold;
|
|
unsigned int moving_threshold;
|
|
bool x_invert;
|
|
bool y_invert;
|
|
|
|
void (*cfg_pin)(bool);
|
|
};
|
|
|
|
#endif /* __LINUX_MMS114_H */
|