net/at91_ether: drop board_data private struct member

No longer used after gpio phy interrupt support was
removed from at91_ether.

Signed-off-by: Joachim Eastwood <manabian@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Joachim Eastwood 2012-11-07 08:14:55 +00:00 committed by David S. Miller
parent 2ea32eedc0
commit 4dda6f6d24
2 changed files with 1 additions and 8 deletions

View File

@ -387,8 +387,6 @@ static int __init at91ether_probe(struct platform_device *pdev)
lp = netdev_priv(dev);
lp->pdev = pdev;
lp->dev = dev;
if (board_data)
lp->board_data = *board_data;
spin_lock_init(&lp->lock);
dev->base_addr = regs->start; /* physical base address */

View File

@ -557,12 +557,7 @@ struct macb {
phy_interface_t phy_interface;
/* at91_private */
struct macb_platform_data board_data; /* board-specific
* configuration (shared with
* macb for common data */
/* Transmit */
/* AT91RM9200 transmit */
struct sk_buff *skb; /* holds skb until xmit interrupt completes */
dma_addr_t skb_physaddr; /* phys addr from pci_map_single */
int skb_length; /* saved skb length for pci_unmap_single */