mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
00bfddaf7f
Impact: fix 15 make headers_check warnings: include of <linux/types.h> is preferred over <asm/types.h> Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
15 lines
297 B
C
15 lines
297 B
C
#ifndef __LINUX_RADEONFB_H__
|
|
#define __LINUX_RADEONFB_H__
|
|
|
|
#include <asm/ioctl.h>
|
|
#include <linux/types.h>
|
|
|
|
#define ATY_RADEON_LCD_ON 0x00000001
|
|
#define ATY_RADEON_CRT_ON 0x00000002
|
|
|
|
|
|
#define FBIO_RADEON_GET_MIRROR _IOR('@', 3, size_t)
|
|
#define FBIO_RADEON_SET_MIRROR _IOW('@', 4, size_t)
|
|
|
|
#endif
|
|
|