diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 18:05:17 +0100 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 19:44:52 +0100 |
commit | de4d3795527b06c67e1333c5662f146b59c97e21 (patch) | |
tree | 9126cd2c512dd4331d0accaeb4dbdf8f3c129cc8 /include/video | |
parent | headers_check fix: video/sisfb.h (diff) | |
download | linux-de4d3795527b06c67e1333c5662f146b59c97e21.tar.xz linux-de4d3795527b06c67e1333c5662f146b59c97e21.zip |
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; |