diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 22:35:17 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 00:14:52 +0530 |
commit | de4d3795527b06c67e1333c5662f146b59c97e21 (patch) | |
tree | 9126cd2c512dd4331d0accaeb4dbdf8f3c129cc8 /include/video | |
parent | dab9c5e15e9faaf00e22b5e708dd19c44800c824 (diff) |
headers_check fix: video/uvesafb.h
fix the following 'make headers_check' warning:
usr/include/video/uvesafb.h:5: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/uvesafb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/video/uvesafb.h b/include/video/uvesafb.h index 95bcef193954..0993a220a3e6 100644 --- a/include/video/uvesafb.h +++ b/include/video/uvesafb.h @@ -1,6 +1,8 @@ #ifndef _UVESAFB_H #define _UVESAFB_H +#include <linux/types.h> + struct v86_regs { __u32 ebx; __u32 ecx; |