diff options
author | Krzysztof Helt <krzysztof.h1@wp.pl> | 2007-10-16 04:29:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:17 -0400 |
commit | e92e739514baed2be83cfb269db003c73dd885c2 (patch) | |
tree | 722f158a6ba32d4266b4067e01eba7482e5c5130 /drivers | |
parent | 93d11f5a15020a514e522e678b2b3e7a1bc01f86 (diff) |
s3c2410fb: remove lcdcon2 and lcdcon3 register fields
This patch removes unused lcdcon2 and lcdcon3 register value
from the s3c2410fb_display structure.
Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
Signed-off-by: Antonino Daplas <adaplas@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/s3c2410fb.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/video/s3c2410fb.c b/drivers/video/s3c2410fb.c index 43749bd1fd67..e850f11488e1 100644 --- a/drivers/video/s3c2410fb.c +++ b/drivers/video/s3c2410fb.c | |||
@@ -341,8 +341,7 @@ static void s3c2410fb_calculate_stn_lcd_regs(const struct fb_info *info, | |||
341 | S3C2410_LCDCON3_LINEBLANK(var->right_margin / 8) | | 341 | S3C2410_LCDCON3_LINEBLANK(var->right_margin / 8) | |
342 | S3C2410_LCDCON3_HOZVAL(hs - 1); | 342 | S3C2410_LCDCON3_HOZVAL(hs - 1); |
343 | 343 | ||
344 | regs->lcdcon4 &= ~S3C2410_LCDCON4_HSPW(0xff); | 344 | regs->lcdcon4 = S3C2410_LCDCON4_WLH(wlh); |
345 | regs->lcdcon4 |= S3C2410_LCDCON4_HSPW(wlh); | ||
346 | } | 345 | } |
347 | 346 | ||
348 | /* s3c2410fb_calculate_tft_lcd_regs | 347 | /* s3c2410fb_calculate_tft_lcd_regs |
@@ -399,8 +398,7 @@ static void s3c2410fb_calculate_tft_lcd_regs(const struct fb_info *info, | |||
399 | S3C2410_LCDCON3_HFPD(var->left_margin - 1) | | 398 | S3C2410_LCDCON3_HFPD(var->left_margin - 1) | |
400 | S3C2410_LCDCON3_HOZVAL(var->xres - 1); | 399 | S3C2410_LCDCON3_HOZVAL(var->xres - 1); |
401 | 400 | ||
402 | regs->lcdcon4 &= ~S3C2410_LCDCON4_HSPW(0xff); | 401 | regs->lcdcon4 = S3C2410_LCDCON4_HSPW(var->hsync_len - 1); |
403 | regs->lcdcon4 |= S3C2410_LCDCON4_HSPW(var->hsync_len - 1); | ||
404 | } | 402 | } |
405 | 403 | ||
406 | /* s3c2410fb_activate_var | 404 | /* s3c2410fb_activate_var |
@@ -850,8 +848,6 @@ static int __init s3c2410fb_probe(struct platform_device *pdev) | |||
850 | strcpy(fbinfo->fix.id, driver_name); | 848 | strcpy(fbinfo->fix.id, driver_name); |
851 | 849 | ||
852 | info->regs.lcdcon1 = display->lcdcon1; | 850 | info->regs.lcdcon1 = display->lcdcon1; |
853 | info->regs.lcdcon2 = display->lcdcon2; | ||
854 | info->regs.lcdcon4 = display->lcdcon4; | ||
855 | info->regs.lcdcon5 = display->lcdcon5; | 851 | info->regs.lcdcon5 = display->lcdcon5; |
856 | 852 | ||
857 | /* Stop the video and unset ENVID if set */ | 853 | /* Stop the video and unset ENVID if set */ |