diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 19:50:25 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 19:50:25 +0530 |
commit | 9d6aa4c7ece26652fcbfe37bd45679eac5f69347 (patch) | |
tree | ef95562b1ce504ef3d68b8d1550bc578d694a2a9 | |
parent | f2257b70b0f9b2fe8f2afd83fc6798dca75930b8 (diff) | |
download | op-kernel-dev-9d6aa4c7ece26652fcbfe37bd45679eac5f69347.zip op-kernel-dev-9d6aa4c7ece26652fcbfe37bd45679eac5f69347.tar.gz |
headers_check fix: can/bcm.h
fix the following 'make headers_check' warning:
usr/include/linux/can/bcm.h:29: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
-rw-r--r-- | include/linux/can/bcm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/can/bcm.h b/include/linux/can/bcm.h index 7f29327..1432b27 100644 --- a/include/linux/can/bcm.h +++ b/include/linux/can/bcm.h @@ -14,6 +14,8 @@ #ifndef CAN_BCM_H #define CAN_BCM_H +#include <linux/types.h> + /** * struct bcm_msg_head - head of messages to/from the broadcast manager * @opcode: opcode, see enum below. |