diff options
author | Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> | 2009-06-30 23:03:33 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-07-06 21:52:43 +0200 |
commit | 45627fce18139a74e0755124d27376b520db156c (patch) | |
tree | 042d853f683b29acb04795b1cc7ee6a6846573e3 /include | |
parent | 2e23008e5dbde7fe4c4758bee5a393e1db796cdf (diff) | |
download | u-boot-imx-45627fce18139a74e0755124d27376b520db156c.zip u-boot-imx-45627fce18139a74e0755124d27376b520db156c.tar.gz u-boot-imx-45627fce18139a74e0755124d27376b520db156c.tar.bz2 |
at91: Add CAN init function
To enable CAN init, CONFIG_CAN has to be defined in the board config file
and at91_can_hw_init() has to be called in the board specific code.
CAN is available on AT91SAM9263 and AT91CAP9 SoC.
Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/arch-at91/at91_common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-arm/arch-at91/at91_common.h b/include/asm-arm/arch-at91/at91_common.h index 9c4e019..01840ee 100644 --- a/include/asm-arm/arch-at91/at91_common.h +++ b/include/asm-arm/arch-at91/at91_common.h @@ -25,6 +25,7 @@ #ifndef AT91_COMMON_H #define AT91_COMMON_H +void at91_can_hw_init(void); void at91_macb_hw_init(void); void at91_serial_hw_init(void); void at91_serial0_hw_init(void); |