summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHaavard Skinnemoen <haavard.skinnemoen@atmel.com>2008-08-30 17:28:36 +0200
committerHaavard Skinnemoen <haavard.skinnemoen@atmel.com>2008-09-01 13:41:58 +0200
commit4c24e8288c601cb773ab02528b48a8577970e867 (patch)
tree7efa82caa351fe68a6e7be401e8a0e37e735836b /include
parent66b7bc5175325809718d8d49ef073bc1036ad71b (diff)
downloadblackbird-obmc-uboot-4c24e8288c601cb773ab02528b48a8577970e867.tar.gz
blackbird-obmc-uboot-4c24e8288c601cb773ab02528b48a8577970e867.zip
avr32: data_bits should reflect the actual number of data bits
Make the data_bits enum in struct sdram_config reflect the actual number of data bits on the bus, i.e. 16 or 32. Having 0 mean 16 bits and 1 mean 32 bits is just too confusing. Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
Diffstat (limited to 'include')
-rw-r--r--include/asm-avr32/sdram.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-avr32/sdram.h b/include/asm-avr32/sdram.h
index 7bdefc1fd2..762acfa078 100644
--- a/include/asm-avr32/sdram.h
+++ b/include/asm-avr32/sdram.h
@@ -25,8 +25,8 @@
struct sdram_config {
/* Number of data bits. */
enum {
- SDRAM_DATA_16BIT,
- SDRAM_DATA_32BIT,
+ SDRAM_DATA_16BIT = 16,
+ SDRAM_DATA_32BIT = 32,
} data_bits;
/* Number of address bits */
OpenPOWER on IntegriCloud