aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/c2port.h
diff options
context:
space:
mode:
authorVegard Nossum <vegard.nossum@gmail.com>2009-02-26 08:05:59 -0500
committerVegard Nossum <vegard.nossum@gmail.com>2009-06-15 09:49:34 -0400
commitc53bd2e1949ddbe06fe2a6079c0658d58ce25edb (patch)
treea9663b949ab413031f09115aef2bf3bf5305ab27 /include/linux/c2port.h
parent9e337b0fb3baa3c22490365b1bdee6f4741413d4 (diff)
c2port: annotate bitfield for kmemcheck
This silences a false positive warning with kmemcheck. Signed-off-by: Vegard Nossum <vegard.nossum@gmail.com>
Diffstat (limited to 'include/linux/c2port.h')
-rw-r--r--include/linux/c2port.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/c2port.h b/include/linux/c2port.h
index 7b5a2388ba67..2a5cd867c365 100644
--- a/include/linux/c2port.h
+++ b/include/linux/c2port.h
@@ -10,6 +10,7 @@
10 */ 10 */
11 11
12#include <linux/device.h> 12#include <linux/device.h>
13#include <linux/kmemcheck.h>
13 14
14#define C2PORT_NAME_LEN 32 15#define C2PORT_NAME_LEN 32
15 16
@@ -20,8 +21,10 @@
20/* Main struct */ 21/* Main struct */
21struct c2port_ops; 22struct c2port_ops;
22struct c2port_device { 23struct c2port_device {
24 kmemcheck_bitfield_begin(flags);
23 unsigned int access:1; 25 unsigned int access:1;
24 unsigned int flash_access:1; 26 unsigned int flash_access:1;
27 kmemcheck_bitfield_end(flags);
25 28
26 int id; 29 int id;
27 char name[C2PORT_NAME_LEN]; 30 char name[C2PORT_NAME_LEN];