diff options
author | wdenk <wdenk> | 2003-11-25 16:55:19 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-11-25 16:55:19 +0000 |
commit | fd3103bb8ece6b20d5f4974fd672b9ff19f9fe99 (patch) | |
tree | 11bfc414e9c8422bccaf4dfa7b039081c74de391 /include | |
parent | b4757cee52597ab5a67c30a1bf2a3208209e1ccb (diff) |
Add support for BMS2003 board
(featuring a NEC NL6448BC33-54. 10.4", 640x480 TFT display).
Fix NEC display names (it's 6440 [for 640x480], not 6640).
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/TQM823L.h | 6 | ||||
-rw-r--r-- | include/configs/TQM823M.h | 2 | ||||
-rw-r--r-- | include/configs/svm_sc8xx.h | 2 |
3 files changed, 7 insertions, 3 deletions
diff --git a/include/configs/TQM823L.h b/include/configs/TQM823L.h index e53304ebfa4..020cc8312db 100644 --- a/include/configs/TQM823L.h +++ b/include/configs/TQM823L.h @@ -86,7 +86,11 @@ # define CONFIG_STATUS_LED 1 /* Status LED enabled */ #endif /* CONFIG_LCD */ -#undef CONFIG_CAN_DRIVER /* CAN Driver support disabled */ +#ifdef CONFIG_BMS2003 +# define CONFIG_CAN_DRIVER 1 /* CAN Driver support enabled */ +#else +# undef CONFIG_CAN_DRIVER /* CAN Driver support disabled */ +#endif #define CONFIG_BOOTP_MASK (CONFIG_BOOTP_DEFAULT | CONFIG_BOOTP_BOOTFILESIZE) diff --git a/include/configs/TQM823M.h b/include/configs/TQM823M.h index 9720828b9d7..7ca9153207c 100644 --- a/include/configs/TQM823M.h +++ b/include/configs/TQM823M.h @@ -37,7 +37,7 @@ #define CONFIG_TQM823M 1 /* ...on a TQM8xxM module */ #ifdef CONFIG_LCD /* with LCD controller ? */ -/* #define CONFIG_NEC_NL6648BC20 1 / * use NEC NL6648BC20 display */ +/* #define CONFIG_NEC_NL6448BC20 1 / * use NEC NL6448BC20 display */ #endif #define CONFIG_8xx_CONS_SMC1 1 /* Console is on SMC1 */ diff --git a/include/configs/svm_sc8xx.h b/include/configs/svm_sc8xx.h index e9e86f6d811..9589050a6d1 100644 --- a/include/configs/svm_sc8xx.h +++ b/include/configs/svm_sc8xx.h @@ -71,7 +71,7 @@ #define CONFIG_SVM_SC8xx 1 /* ...on SVM SC8xx series */ #ifdef CONFIG_LCD /* with LCD controller ? */ -/* #define CONFIG_NEC_NL6648BC20 1 / * use NEC NL6648BC20 display */ +/* #define CONFIG_NEC_NL6448BC20 1 / * use NEC NL6448BC20 display */ #endif #define CONFIG_8xx_CONS_SMC1 1 /* Console is on SMC1 */ |