|
@@ -99,7 +99,7 @@ static struct platform_device_id fec_devtype[] = {
|
|
|
MODULE_DEVICE_TABLE(platform, fec_devtype);
|
|
|
|
|
|
enum imx_fec_type {
|
|
|
- IMX25_FEC = 1, /* runs on i.mx25/50/53 */
|
|
|
+ IMX25_FEC = 1, /* runs on i.mx25/50/53 */
|
|
|
IMX27_FEC, /* runs on i.mx27/35/51 */
|
|
|
IMX28_FEC,
|
|
|
IMX6Q_FEC,
|
|
@@ -132,7 +132,7 @@ MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
|
|
|
#elif defined (CONFIG_M5272C3)
|
|
|
#define FEC_FLASHMAC (0xffe04000 + 4)
|
|
|
#elif defined(CONFIG_MOD5272)
|
|
|
-#define FEC_FLASHMAC 0xffc0406b
|
|
|
+#define FEC_FLASHMAC 0xffc0406b
|
|
|
#else
|
|
|
#define FEC_FLASHMAC 0
|
|
|
#endif
|
|
@@ -972,8 +972,9 @@ static int fec_enet_mii_probe(struct net_device *ndev)
|
|
|
}
|
|
|
|
|
|
if (phy_id >= PHY_MAX_ADDR) {
|
|
|
- printk(KERN_INFO "%s: no PHY, assuming direct connection "
|
|
|
- "to switch\n", ndev->name);
|
|
|
+ printk(KERN_INFO
|
|
|
+ "%s: no PHY, assuming direct connection to switch\n",
|
|
|
+ ndev->name);
|
|
|
strncpy(mdio_bus_id, "0", MII_BUS_ID_SIZE);
|
|
|
phy_id = 0;
|
|
|
}
|
|
@@ -998,8 +999,9 @@ static int fec_enet_mii_probe(struct net_device *ndev)
|
|
|
fep->link = 0;
|
|
|
fep->full_duplex = 0;
|
|
|
|
|
|
- printk(KERN_INFO "%s: Freescale FEC PHY driver [%s] "
|
|
|
- "(mii_bus:phy_addr=%s, irq=%d)\n", ndev->name,
|
|
|
+ printk(KERN_INFO
|
|
|
+ "%s: Freescale FEC PHY driver [%s] (mii_bus:phy_addr=%s, irq=%d)\n",
|
|
|
+ ndev->name,
|
|
|
fep->phy_dev->drv->name, dev_name(&fep->phy_dev->dev),
|
|
|
fep->phy_dev->irq);
|
|
|
|