diff options
Diffstat (limited to 'drivers/net/fec_mxc.c')
| -rw-r--r-- | drivers/net/fec_mxc.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 6b801ce24..2d4ffed4f 100644 --- a/drivers/net/fec_mxc.c +++ b/drivers/net/fec_mxc.c @@ -62,7 +62,7 @@ struct fec_priv gfec = {  /*   * MII-interface related functions   */ -static int fec_miiphy_read(char *dev, uint8_t phyAddr, uint8_t regAddr, +static int fec_miiphy_read(const char *dev, uint8_t phyAddr, uint8_t regAddr,  		uint16_t *retVal)  {  	struct eth_device *edev = eth_get_dev_by_name(dev); @@ -119,7 +119,7 @@ static void fec_mii_setspeed(struct fec_priv *fec)  	debug("fec_init: mii_speed %#lx\n",  			fec->eth->mii_speed);  } -static int fec_miiphy_write(char *dev, uint8_t phyAddr, uint8_t regAddr, +static int fec_miiphy_write(const char *dev, uint8_t phyAddr, uint8_t regAddr,  		uint16_t data)  {  	struct eth_device *edev = eth_get_dev_by_name(dev); |