ep8248e.c (f68ec0c24755e5cdb779be6240925f2175311d84) | ep8248e.c (18ee49ddb0d242ed1d0e273038d5e4f6de7379d3) |
---|---|
1/* 2 * Embedded Planet EP8248E support 3 * 4 * Copyright 2007 Freescale Semiconductor, Inc. 5 * Author: Scott Wood <scottwood@freescale.com> 6 * 7 * This program is free software; you can redistribute it and/or modify it 8 * under the terms of the GNU General Public License as published by the --- 123 unchanged lines hidden (view full) --- 132 133 bus->phy_mask = 0; 134 bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL); 135 136 for (i = 0; i < PHY_MAX_ADDR; i++) 137 bus->irq[i] = -1; 138 139 bus->name = "ep8248e-mdio-bitbang"; | 1/* 2 * Embedded Planet EP8248E support 3 * 4 * Copyright 2007 Freescale Semiconductor, Inc. 5 * Author: Scott Wood <scottwood@freescale.com> 6 * 7 * This program is free software; you can redistribute it and/or modify it 8 * under the terms of the GNU General Public License as published by the --- 123 unchanged lines hidden (view full) --- 132 133 bus->phy_mask = 0; 134 bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL); 135 136 for (i = 0; i < PHY_MAX_ADDR; i++) 137 bus->irq[i] = -1; 138 139 bus->name = "ep8248e-mdio-bitbang"; |
140 bus->dev = &ofdev->dev; | 140 bus->parent = &ofdev->dev; |
141 snprintf(bus->id, MII_BUS_ID_SIZE, "%x", res.start); 142 143 return mdiobus_register(bus); 144} 145 146static int ep8248e_mdio_remove(struct of_device *ofdev) 147{ 148 BUG(); --- 176 unchanged lines hidden --- | 141 snprintf(bus->id, MII_BUS_ID_SIZE, "%x", res.start); 142 143 return mdiobus_register(bus); 144} 145 146static int ep8248e_mdio_remove(struct of_device *ofdev) 147{ 148 BUG(); --- 176 unchanged lines hidden --- |