X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=drivers%2Fvideo%2Ftx3912fb.c;h=d904da44e1aacf280497bb174f4caccaf7bf4cb8;hb=43bc926fffd92024b46cafaf7350d669ba9ca884;hp=09a9a3454092aeab5fd210365ed7cf618221850c;hpb=c7b5ebbddf7bcd3651947760f423e3783bbe6573;p=linux-2.6.git diff --git a/drivers/video/tx3912fb.c b/drivers/video/tx3912fb.c index 09a9a3454..d904da44e 100644 --- a/drivers/video/tx3912fb.c +++ b/drivers/video/tx3912fb.c @@ -10,7 +10,6 @@ * * Framebuffer for LCD controller in TMPR3912/05 and PR31700 processors */ -#include #include #include #include @@ -35,11 +34,7 @@ static u32 cfb8[16]; static struct fb_fix_screeninfo tx3912fb_fix __initdata = { .id = "tx3912fb", -#ifdef CONFIG_NINO_16MB - .smem_len = (240 * 320), -#else .smem_len = ((240 * 320)/2), -#endif .type = FB_TYPE_PACKED_PIXELS, .visual = FB_VISUAL_TRUECOLOR, .xpanstep = 1, @@ -53,17 +48,10 @@ static struct fb_var_screeninfo tx3912fb_var = { .yres = 320, .xres_virtual = 240, .yres_virtual = 320, -#ifdef CONFIG_NINO_16MB - .bits_per_pixel =8, - .red = { 5, 3, 0 }, /* RGB 332 */ - .green = { 2, 3, 0 }, - .blue = { 0, 2, 0 }, -#else .bits_per_pixel =4, .red = { 0, 4, 0 }, /* ??? */ .green = { 0, 4, 0 }, .blue = { 0, 4, 0 }, -#endif .activate = FB_ACTIVATE_NOW, .width = -1, .height = -1, @@ -101,7 +89,6 @@ static struct fb_ops tx3912fb_ops = { .fb_fillrect = cfb_fillrect, .fb_copyarea = cfb_copyarea, .fb_imageblit = cfb_imageblit, - .fb_cursor = soft_cursor, }; static int tx3912fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)