mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
rename target/linux/generic-2.6 to generic
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21952 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
35
target/linux/generic/files/include/linux/glamofb.h
Normal file
35
target/linux/generic/files/include/linux/glamofb.h
Normal file
@@ -0,0 +1,35 @@
|
||||
#ifndef _LINUX_GLAMOFB_H
|
||||
#define _LINUX_GLAMOFB_H
|
||||
|
||||
#include <linux/fb.h>
|
||||
|
||||
#ifdef __KERNEL__
|
||||
|
||||
struct glamo_core;
|
||||
struct glamofb_handle;
|
||||
|
||||
struct glamo_fb_platform_data {
|
||||
int width, height;
|
||||
|
||||
int num_modes;
|
||||
struct fb_videomode *modes;
|
||||
|
||||
struct glamo_core *core;
|
||||
};
|
||||
|
||||
int glamofb_cmd_mode(struct glamofb_handle *gfb, int on);
|
||||
int glamofb_cmd_write(struct glamofb_handle *gfb, u_int16_t val);
|
||||
|
||||
#ifdef CONFIG_MFD_GLAMO
|
||||
void glamo_lcm_reset(struct platform_device *pdev, int level);
|
||||
#else
|
||||
#define glamo_lcm_reset(...) do {} while (0)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#define GLAMOFB_ENGINE_ENABLE _IOW('F', 0x1, __u32)
|
||||
#define GLAMOFB_ENGINE_DISABLE _IOW('F', 0x2, __u32)
|
||||
#define GLAMOFB_ENGINE_RESET _IOW('F', 0x3, __u32)
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user