diff options
author | Bo Shen <voice.shen@atmel.com> | 2013-11-15 11:12:32 +0800 |
---|---|---|
committer | Andreas Bießmann <andreas.devel@googlemail.com> | 2013-12-01 22:38:39 +0100 |
commit | 184c551b8582fee6b685d513d026b44f558285b5 (patch) | |
tree | b251558f177752a4a159e21a14f3d03117e4acb6 /arch/arm/cpu/armv7/at91/sama5d3_devices.c | |
parent | 618bbbb2e9546aa602c97d55963e133c7e1a85ec (diff) | |
download | u-boot-184c551b8582fee6b685d513d026b44f558285b5.tar.gz |
arm: atmel: sama5d3: correct the ID for DBGU and PIT
As the DBGU and PIT has its own ID on sama5d3 SoC, while not share
with SYS ID. So, correct them.
Signed-off-by: Bo Shen <voice.shen@atmel.com>
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Diffstat (limited to 'arch/arm/cpu/armv7/at91/sama5d3_devices.c')
-rw-r--r-- | arch/arm/cpu/armv7/at91/sama5d3_devices.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/at91/sama5d3_devices.c b/arch/arm/cpu/armv7/at91/sama5d3_devices.c index 7ebee87f92..78ecfc882a 100644 --- a/arch/arm/cpu/armv7/at91/sama5d3_devices.c +++ b/arch/arm/cpu/armv7/at91/sama5d3_devices.c @@ -84,7 +84,7 @@ void at91_seriald_hw_init(void) at91_set_a_periph(AT91_PIO_PORTB, 30, 0); /* DRXD */ /* Enable clock */ - at91_periph_clk_enable(ATMEL_ID_SYS); + at91_periph_clk_enable(ATMEL_ID_DBGU); } #if defined(CONFIG_ATMEL_SPI) |