diff options
author | Wolfgang Denk <wd@denx.de> | 2007-08-14 09:47:27 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-08-14 09:47:27 +0200 |
commit | 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7 (patch) | |
tree | 0b8f372b8912f665cf7743902cb7145b55b954ce /drivers | |
parent | 53a5c424bf8655b7b4e2c305a441963259a26a81 (diff) | |
download | u-boot-midas-85eb5caf6b906f7ec5b54814e8c7c74f55986bb7.tar.gz u-boot-midas-85eb5caf6b906f7ec5b54814e8c7c74f55986bb7.tar.bz2 u-boot-midas-85eb5caf6b906f7ec5b54814e8c7c74f55986bb7.zip |
Coding style cleanup; rebuild CHANGELOG
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/rtl8139.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/rtl8139.c b/drivers/rtl8139.c index 3e259b6b1b..2367180057 100644 --- a/drivers/rtl8139.c +++ b/drivers/rtl8139.c @@ -194,8 +194,10 @@ static int rtl_transmit(struct eth_device *dev, volatile void *packet, int lengt static int rtl_poll(struct eth_device *dev); static void rtl_disable(struct eth_device *dev); #ifdef CONFIG_MCAST_TFTP/* This driver already accepts all b/mcast */ -static int rtl_bcast_addr (struct eth_device *dev, u8 bcast_mac, u8 set) - { return (0); } +static int rtl_bcast_addr (struct eth_device *dev, u8 bcast_mac, u8 set) +{ + return (0); +} #endif static struct pci_device_id supported[] = { |