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 /include/asm-arm/arch-s3c2410 | |
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 'include/asm-arm/arch-s3c2410')
-rw-r--r-- | include/asm-arm/arch-s3c2410/fb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-arm/arch-s3c2410/fb.h b/include/asm-arm/arch-s3c2410/fb.h index 6f022bd3b2c0..9abe67b04dc8 100644 --- a/include/asm-arm/arch-s3c2410/fb.h +++ b/include/asm-arm/arch-s3c2410/fb.h | |||
@@ -36,6 +36,7 @@ struct s3c2410fb_display { | |||
36 | unsigned short yres; | 36 | unsigned short yres; |
37 | unsigned short bpp; | 37 | unsigned short bpp; |
38 | 38 | ||
39 | unsigned pixclock; /* pixclock in picoseconds */ | ||
39 | unsigned short left_margin; /* value in pixels (TFT) or HCLKs (STN) */ | 40 | unsigned short left_margin; /* value in pixels (TFT) or HCLKs (STN) */ |
40 | unsigned short right_margin; /* value in pixels (TFT) or HCLKs (STN) */ | 41 | unsigned short right_margin; /* value in pixels (TFT) or HCLKs (STN) */ |
41 | unsigned short hsync_len; /* value in pixels (TFT) or HCLKs (STN) */ | 42 | unsigned short hsync_len; /* value in pixels (TFT) or HCLKs (STN) */ |