diff options
author | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2017-12-01 08:08:47 +0900 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2018-01-15 12:05:24 -0600 |
commit | 9b5f9ecf6e7e2af0d395e10323b14d77fc0c9a9b (patch) | |
tree | 28ce40fab4bcca66cb8a23c4d7078d684a599ced /drivers | |
parent | dc14867d0ffea3e4ffcda669780d85bb160871b0 (diff) | |
download | u-boot-9b5f9ecf6e7e2af0d395e10323b14d77fc0c9a9b.zip u-boot-9b5f9ecf6e7e2af0d395e10323b14d77fc0c9a9b.tar.gz u-boot-9b5f9ecf6e7e2af0d395e10323b14d77fc0c9a9b.tar.bz2 |
net: sh-eth: Remove bd_t from sh_eth_config()
bd_t is not used in sh_eth_config(). This deletes bd_t from sh_eth_config()
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/sh_eth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c index eafc4d3..14816a0 100644 --- a/drivers/net/sh_eth.c +++ b/drivers/net/sh_eth.c @@ -373,7 +373,7 @@ static int sh_eth_phy_config(struct sh_eth_dev *eth) return ret; } -static int sh_eth_config(struct sh_eth_dev *eth, bd_t *bd) +static int sh_eth_config(struct sh_eth_dev *eth) { int port = eth->port, ret = 0; u32 val; @@ -510,7 +510,7 @@ int sh_eth_init(struct eth_device *dev, bd_t *bd) if (ret) goto err; - ret = sh_eth_config(eth, bd); + ret = sh_eth_config(eth); if (ret) goto err_config; |