Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.8-rc2 15 lines 338 B view raw
1#ifndef __OMAP_PANEL_N8X0_H 2#define __OMAP_PANEL_N8X0_H 3 4struct omap_dss_device; 5 6struct panel_n8x0_data { 7 int (*platform_enable)(struct omap_dss_device *dssdev); 8 void (*platform_disable)(struct omap_dss_device *dssdev); 9 int panel_reset; 10 int ctrl_pwrdown; 11 12 int (*set_backlight)(struct omap_dss_device *dssdev, int level); 13}; 14 15#endif