aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pnp/interface.c
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2008-04-17 09:24:48 -0400
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2008-04-17 09:24:48 -0400
commitdb7c10e708b9bdd1618c034591d27c33cb341222 (patch)
tree82514a25edc204ed02d28f7c0b7bab95a398d518 /drivers/pnp/interface.c
parentd808fbe5b404854374917bd0d1db937a0a524665 (diff)
Input: wm97xx-core - use IRQF_SAMPLE_RANDOM
The touchscreen interrupt is driven by human input which can reasonably be used to provide entropy. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/pnp/interface.c')
0 files changed, 0 insertions, 0 deletions
com"> */ #ifndef _LINUX_IMA_H #define _LINUX_IMA_H #include <linux/fs.h> struct linux_binprm; #ifdef CONFIG_IMA extern int ima_bprm_check(struct linux_binprm *bprm); extern int ima_inode_alloc(struct inode *inode); extern void ima_inode_free(struct inode *inode); extern int ima_file_check(struct file *file, int mask); extern void ima_file_free(struct file *file); extern int ima_file_mmap(struct file *file, unsigned long prot); #else static inline int ima_bprm_check(struct linux_binprm *bprm) { return 0; } static inline int ima_inode_alloc(struct inode *inode) { return 0; } static inline void ima_inode_free(struct inode *inode) { return; } static inline int ima_file_check(struct file *file, int mask) { return 0; } static inline void ima_file_free(struct file *file) { return; } static inline int ima_file_mmap(struct file *file, unsigned long prot) { return 0; } #endif /* CONFIG_IMA_H */ #endif /* _LINUX_IMA_H */