diff options
author | Krzysztof Helt <krzysztof.h1@wp.pl> | 2007-10-16 04:29:06 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:18 -0400 |
commit | 69816699fa019145dd163949d65a07093af73b67 (patch) | |
tree | 62f882257742edc6edda05349cf75789fb6fabe9 /arch/arm/mach-s3c2440 | |
parent | 9fa7bc016a688630386378c205f9ee0f7b2cc834 (diff) |
s3c2410fb: adds pixclock to s3c2410fb_display
This patch adds pixelclock field to the s3c2410fb_display structure and make
use of it in the driver.
The Bast machine defined 9 modes but pixclock and margin values are defined
only for the 640x480 modes so I removed other modes.
This patch also fixes wrong display type constant for the SMDK2440 board.
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 'arch/arm/mach-s3c2440')
-rw-r--r-- | arch/arm/mach-s3c2440/mach-rx3715.c | 1 | ||||
-rw-r--r-- | arch/arm/mach-s3c2440/mach-smdk2440.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c2440/mach-rx3715.c b/arch/arm/mach-s3c2440/mach-rx3715.c index f26adeaf1e74..408337f8bebf 100644 --- a/arch/arm/mach-s3c2440/mach-rx3715.c +++ b/arch/arm/mach-s3c2440/mach-rx3715.c | |||
@@ -123,6 +123,7 @@ static struct s3c2410fb_display rx3715_lcdcfg __initdata = { | |||
123 | .width = 240, | 123 | .width = 240, |
124 | .height = 320, | 124 | .height = 320, |
125 | 125 | ||
126 | .pixclock = 260000, | ||
126 | .xres = 240, | 127 | .xres = 240, |
127 | .yres = 320, | 128 | .yres = 320, |
128 | .bpp = 16, | 129 | .bpp = 16, |
diff --git a/arch/arm/mach-s3c2440/mach-smdk2440.c b/arch/arm/mach-s3c2440/mach-smdk2440.c index 840a480c40de..561e39147e67 100644 --- a/arch/arm/mach-s3c2440/mach-smdk2440.c +++ b/arch/arm/mach-s3c2440/mach-smdk2440.c | |||
@@ -115,11 +115,12 @@ static struct s3c2410fb_display smdk2440_lcd_cfg __initdata = { | |||
115 | S3C2410_LCDCON5_PWREN | | 115 | S3C2410_LCDCON5_PWREN | |
116 | S3C2410_LCDCON5_HWSWP, | 116 | S3C2410_LCDCON5_HWSWP, |
117 | 117 | ||
118 | .type = S3C2410_LCDCON1_TFT16BPP, | 118 | .type = S3C2410_LCDCON1_TFT, |
119 | 119 | ||
120 | .width = 240, | 120 | .width = 240, |
121 | .height = 320, | 121 | .height = 320, |
122 | 122 | ||
123 | .pixclock = 166667, /* HCLK 60 MHz, divisor 10 */ | ||
123 | .xres = 240, | 124 | .xres = 240, |
124 | .yres = 320, | 125 | .yres = 320, |
125 | .bpp = 16, | 126 | .bpp = 16, |