1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-25 04:30:39 +02:00

jz4740_fb: Add include guards

This commit is contained in:
Lars-Peter Clausen 2009-09-19 21:59:16 +02:00 committed by Xiangfu Liu
parent 65051a9ad5
commit 9480e0470b

View File

@ -12,6 +12,9 @@
* *
*/ */
#ifndef __LINUX_JZ4740_FB_H
#define __LINUX_JZ4740_FB_H
#include <linux/fb.h> #include <linux/fb.h>
enum jz4740_fb_lcd_type { enum jz4740_fb_lcd_type {
@ -45,3 +48,5 @@ struct jz4740_fb_platform_data {
int bpp; int bpp;
enum jz4740_fb_lcd_type lcd_type; enum jz4740_fb_lcd_type lcd_type;
}; };
#endif