mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-08 02:07:55 +01:00
net: emaclite: Use unsigned long for baseaddr
Baseaddr should be unsigned long. Signed-off-by: Michal Simek <monstr@monstr.eu>
This commit is contained in:
parent
7b5d61b5a3
commit
9b94755af9
2 changed files with 3 additions and 3 deletions
|
|
@ -342,7 +342,7 @@ static int emaclite_recv(struct eth_device *dev)
|
|||
|
||||
}
|
||||
|
||||
int xilinx_emaclite_initialize (bd_t *bis, int base_addr)
|
||||
int xilinx_emaclite_initialize(bd_t *bis, unsigned long base_addr)
|
||||
{
|
||||
struct eth_device *dev;
|
||||
struct xemaclite *emaclite;
|
||||
|
|
@ -366,7 +366,7 @@ int xilinx_emaclite_initialize (bd_t *bis, int base_addr)
|
|||
emaclite->rxpp = 1;
|
||||
#endif
|
||||
|
||||
sprintf(dev->name, "Xelite.%x", base_addr);
|
||||
sprintf(dev->name, "Xelite.%lx", base_addr);
|
||||
|
||||
dev->iobase = base_addr;
|
||||
dev->init = emaclite_init;
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ int uli526x_initialize(bd_t *bis);
|
|||
int armada100_fec_register(unsigned long base_addr);
|
||||
int xilinx_axiemac_initialize(bd_t *bis, unsigned long base_addr,
|
||||
unsigned long dma_addr);
|
||||
int xilinx_emaclite_initialize (bd_t *bis, int base_addr);
|
||||
int xilinx_emaclite_initialize(bd_t *bis, unsigned long base_addr);
|
||||
|
||||
/* Boards with PCI network controllers can call this from their board_eth_init()
|
||||
* function to initialize whatever's on board.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue