diff options
author | Javier M. Mellid <jmunhoz@igalia.com> | 2011-04-30 17:44:26 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-05-03 12:09:43 -0700 |
commit | 3b70a26bcbe05db12965de702368ca0b9ec945f1 (patch) | |
tree | 6bf1a7adeb4f3cbc1bd42617fa65af9b7bbde018 /drivers/staging/sm7xx | |
parent | 59815677555746f8263672f25cebcf4c27fc5d31 (diff) | |
download | talos-op-linux-3b70a26bcbe05db12965de702368ca0b9ec945f1.tar.gz talos-op-linux-3b70a26bcbe05db12965de702368ca0b9ec945f1.zip |
staging: sm7xx: minor cleanup
Sync code comments with TODO, fix some style and format issues
Signed-off-by: Javier M. Mellid <jmunhoz@igalia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/sm7xx')
-rw-r--r-- | drivers/staging/sm7xx/TODO | 1 | ||||
-rw-r--r-- | drivers/staging/sm7xx/smtcfb.c | 16 |
2 files changed, 8 insertions, 9 deletions
diff --git a/drivers/staging/sm7xx/TODO b/drivers/staging/sm7xx/TODO index a66d9e406497..b0f531803ffe 100644 --- a/drivers/staging/sm7xx/TODO +++ b/drivers/staging/sm7xx/TODO @@ -2,7 +2,6 @@ TODO: - Dual head support - 2D acceleration support - use kernel coding style -- checkpatch.pl clean - refine the code and remove unused code - use kernel framebuffer mode setting instead of hard code - move it to drivers/video/sm7xx/ or make it be drivers/video/sm7xxfb.c diff --git a/drivers/staging/sm7xx/smtcfb.c b/drivers/staging/sm7xx/smtcfb.c index 976a0800e62a..c0d943f498c6 100644 --- a/drivers/staging/sm7xx/smtcfb.c +++ b/drivers/staging/sm7xx/smtcfb.c @@ -14,15 +14,15 @@ * * Version 0.10.26192.21.01 * - Add PowerPC/Big endian support - * - Add 2D support for Lynx - * - Verified on2.6.19.2 Boyod.yang <boyod.yang@siliconmotion.com.cn> + * - Verified on 2.6.19.2 + * Boyod.yang <boyod.yang@siliconmotion.com.cn> * * Version 0.09.2621.00.01 - * - Only support Linux Kernel's version 2.6.21. - * Boyod.yang <boyod.yang@siliconmotion.com.cn> + * - Only support Linux Kernel's version 2.6.21 + * Boyod.yang <boyod.yang@siliconmotion.com.cn> * * Version 0.09 - * - Only support Linux Kernel's version 2.6.12. + * - Only support Linux Kernel's version 2.6.12 * Boyod.yang <boyod.yang@siliconmotion.com.cn> */ @@ -99,17 +99,17 @@ struct vesa_mode_table { static struct vesa_mode_table vesa_mode[] = { {"0x301", 640, 480, 8}, {"0x303", 800, 600, 8}, - {"0x305", 1024, 768, 8}, + {"0x305", 1024, 768, 8}, {"0x307", 1280, 1024, 8}, {"0x311", 640, 480, 16}, {"0x314", 800, 600, 16}, - {"0x317", 1024, 768, 16}, + {"0x317", 1024, 768, 16}, {"0x31A", 1280, 1024, 16}, {"0x312", 640, 480, 24}, {"0x315", 800, 600, 24}, - {"0x318", 1024, 768, 24}, + {"0x318", 1024, 768, 24}, {"0x31B", 1280, 1024, 24}, }; |