diff options
author | Stefano Babic <sbabic@denx.de> | 2011-01-20 07:49:52 +0000 |
---|---|---|
committer | Albert Aribaud <albert.aribaud@free.fr> | 2011-02-02 00:54:42 +0100 |
commit | b9bb053159805674540cb007e701b0e717cccf90 (patch) | |
tree | 075fa961b4650667c4bdf52f55b5f1441d6b656f /include | |
parent | d59140170ae7b57c92e3590c359c06201407acf4 (diff) | |
download | u-boot-imx-b9bb053159805674540cb007e701b0e717cccf90.zip u-boot-imx-b9bb053159805674540cb007e701b0e717cccf90.tar.gz u-boot-imx-b9bb053159805674540cb007e701b0e717cccf90.tar.bz2 |
Add support for MX35 processor
The patch adds basic support for the Freescale's i.MX35
(arm1136 based) processor.
The patch adds also a prototype for the initialization
of the FEC(ethernet controller) to netdev.h to avoid
warnings.
Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/netdev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/netdev.h b/include/netdev.h index 1a542e8..6f0a971 100644 --- a/include/netdev.h +++ b/include/netdev.h @@ -93,6 +93,7 @@ int uli526x_initialize(bd_t *bis); int xilinx_emaclite_initialize (bd_t *bis, int base_addr); int sh_eth_initialize(bd_t *bis); int dm9000_initialize(bd_t *bis); +int fecmxc_initialize(bd_t *bis); /* Boards with PCI network controllers can call this from their board_eth_init() * function to initialize whatever's on board. |