Skip to content

Commit

Permalink
[ARM] 4106/1: S3C2410: typo fixes in register definitions
Browse files Browse the repository at this point in the history
The Trcd* bits of the S3C24xx BANKCON6 and BANKCON7 registers are misspelled in include/asm-arm/arch-s3c2410/regs-mem.h as Trdc*.

Signed-off-by: Matt Reimer <[email protected]>
Acked-by: Ben Dooks <[email protected]>
Signed-off-by: Russell King <[email protected]>
  • Loading branch information
matthewreimer authored and Russell King committed Jan 24, 2007
1 parent d4e1c88 commit 7baced8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions include/asm-arm/arch-s3c2410/regs-mem.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,10 @@
#define S3C2410_BANKCON_SDRAM (0x3 << 15)

/* next bits only for EDO DRAM in 6,7 */
#define S3C2400_BANKCON_EDO_Trdc1 (0x00 << 4)
#define S3C2400_BANKCON_EDO_Trdc2 (0x01 << 4)
#define S3C2400_BANKCON_EDO_Trdc3 (0x02 << 4)
#define S3C2400_BANKCON_EDO_Trdc4 (0x03 << 4)
#define S3C2400_BANKCON_EDO_Trcd1 (0x00 << 4)
#define S3C2400_BANKCON_EDO_Trcd2 (0x01 << 4)
#define S3C2400_BANKCON_EDO_Trcd3 (0x02 << 4)
#define S3C2400_BANKCON_EDO_Trcd4 (0x03 << 4)

/* CAS pulse width */
#define S3C2400_BANKCON_EDO_PULSE1 (0x00 << 3)
Expand All @@ -153,9 +153,9 @@
#define S3C2400_BANKCON_EDO_SCANb11 (0x03 << 0)

/* next bits only for SDRAM in 6,7 */
#define S3C2410_BANKCON_Trdc2 (0x00 << 2)
#define S3C2410_BANKCON_Trdc3 (0x01 << 2)
#define S3C2410_BANKCON_Trdc4 (0x02 << 2)
#define S3C2410_BANKCON_Trcd2 (0x00 << 2)
#define S3C2410_BANKCON_Trcd3 (0x01 << 2)
#define S3C2410_BANKCON_Trcd4 (0x02 << 2)

/* control column address select */
#define S3C2410_BANKCON_SCANb8 (0x00 << 0)
Expand Down

0 comments on commit 7baced8

Please sign in to comment.