diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-12-09 17:46:21 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-02-02 12:24:27 -0500 |
commit | 092d2487baf7c29343c165e3ae82ea8a7f9e679b (patch) | |
tree | 5ae791ad1c31f5835fba18611e2f0ebccc6745e5 /drivers | |
parent | 8eed6ca51e50fade6887e8bdb1ff6a44116b42b5 (diff) | |
download | u-boot-imx-092d2487baf7c29343c165e3ae82ea8a7f9e679b.zip u-boot-imx-092d2487baf7c29343c165e3ae82ea8a7f9e679b.tar.gz u-boot-imx-092d2487baf7c29343c165e3ae82ea8a7f9e679b.tar.bz2 |
Blackfin: bfin_mac: convert CONFIG_BFIN_MAC_RMII to CONFIG_RMII
No point in having a Blackfin-specific define "CONFIG_BFIN_MAC_RMII" that
does exactly the same thing as common "CONFIG_RMII".
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Acked-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/bfin_mac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/bfin_mac.c b/drivers/net/bfin_mac.c index d2328a9..6f094e4 100644 --- a/drivers/net/bfin_mac.c +++ b/drivers/net/bfin_mac.c @@ -225,7 +225,7 @@ static int bfin_miiphy_init(struct eth_device *dev, int *opmode) *pVR_CTL |= CLKBUFOE; /* Set all the pins to peripheral mode */ -#ifdef CONFIG_BFIN_MAC_RMII +#ifdef CONFIG_RMII /* grab RMII pins */ # if defined(__ADSPBF51x__) *pPORTF_MUX = (*pPORTF_MUX & \ @@ -365,7 +365,7 @@ static int bfin_EMAC_init(struct eth_device *dev, bd_t *bd) else opmode = ASTP | PSF; opmode |= RE; -#ifdef CONFIG_BFIN_MAC_RMII +#ifdef CONFIG_RMII opmode |= TE | RMII; #endif /* Turn on the EMAC */ |