diff options
author | lars <lars@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-05 12:05:20 +0000 |
---|---|---|
committer | lars <lars@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-05 12:05:20 +0000 |
commit | 465f0ffdb55bd0ed9ef02291c3c1452df5fd2019 (patch) | |
tree | 6b21f6a82374a8ab56348d923e2d27dbd724d211 /target/linux/s3c24xx/files-2.6.30/include | |
parent | 1f6241ad90b21a1db914a1d32fef6e9500a8d4d0 (diff) |
[s3c24xx] Add ioctls to glamo framebuffer driver to enable/disable glamo
engines.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16686 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/s3c24xx/files-2.6.30/include')
-rw-r--r-- | target/linux/s3c24xx/files-2.6.30/include/linux/glamofb.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/target/linux/s3c24xx/files-2.6.30/include/linux/glamofb.h b/target/linux/s3c24xx/files-2.6.30/include/linux/glamofb.h deleted file mode 100644 index 7f137feb3d..0000000000 --- a/target/linux/s3c24xx/files-2.6.30/include/linux/glamofb.h +++ /dev/null @@ -1,40 +0,0 @@ -#ifndef _LINUX_GLAMOFB_H -#define _LINUX_GLAMOFB_H - -#include <linux/spi/glamo.h> -#include <linux/fb.h> - -struct glamo_core; - -struct glamofb_platform_data { - int width, height; - int fb_mem_size; - - int num_modes; - struct fb_videomode *modes; - - struct glamo_spi_info *spi_info; - struct glamo_spigpio_info *spigpio_info; - struct glamo_core *glamo; - - struct platform_device *mmc_dev; - - /* glamo mmc platform specific info */ - int (*glamo_can_set_mci_power)(void); - - /* glamo-mci asking if it should use the slow clock to card */ - int (*glamo_mci_use_slow)(void); - int (*glamo_irq_is_wired)(void); - void (*glamo_external_reset)(int); -}; - -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(int level); -#else -#define glamo_lcm_reset(...) do {} while (0) -#endif - -#endif |