diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-07-21 11:31:42 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-07-21 11:31:42 +0200 |
commit | 32cb2c70c46c2be977215eb33aea049add647c09 (patch) | |
tree | 5dbf2b388b95cf1c55c235361ab70ae814059c8f /cpu/arm920t/s3c24x0 | |
parent | e644670b68d652cec98f649a776ea44d725a45ad (diff) | |
download | u-boot-imx-32cb2c70c46c2be977215eb33aea049add647c09.zip u-boot-imx-32cb2c70c46c2be977215eb33aea049add647c09.tar.gz u-boot-imx-32cb2c70c46c2be977215eb33aea049add647c09.tar.bz2 |
Add support for friendly-arm SBC-2410X board
Patch by JinHua Luo, 01 Sep 2005
Diffstat (limited to 'cpu/arm920t/s3c24x0')
-rw-r--r-- | cpu/arm920t/s3c24x0/interrupts.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpu/arm920t/s3c24x0/interrupts.c b/cpu/arm920t/s3c24x0/interrupts.c index 3ec9b54..1b36412 100644 --- a/cpu/arm920t/s3c24x0/interrupts.c +++ b/cpu/arm920t/s3c24x0/interrupts.c @@ -176,7 +176,9 @@ ulong get_tbclk (void) #if defined(CONFIG_SMDK2400) || defined(CONFIG_TRAB) tbclk = timer_load_val * 100; -#elif defined(CONFIG_SMDK2410) || defined(CONFIG_VCMA9) +#elif defined(CONFIG_SBC2410X) || \ + defined(CONFIG_SMDK2410) || \ + defined(CONFIG_VCMA9) tbclk = CFG_HZ; #else # error "tbclk not configured" |