Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6

* 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6:
  phylib: Silence driver registration
  phylib: Add ID for Marvell 88E1240
  82596: free nonexistent resource fix
  SUNHME: Fix missing NETIF_F_VLAN_CHALLENGED on PCI happy meals
This commit is contained in:
Linus Torvalds 2007-11-05 17:42:41 -08:00
commit 61edab8d14
4 changed files with 23 additions and 9 deletions

View file

@ -1192,6 +1192,8 @@ struct net_device * __init i82596_probe(int unit)
goto out; goto out;
} }
dev->base_addr = ioaddr;
for (i = 0; i < 8; i++) { for (i = 0; i < 8; i++) {
eth_addr[i] = inb(ioaddr + 8 + i); eth_addr[i] = inb(ioaddr + 8 + i);
checksum += eth_addr[i]; checksum += eth_addr[i];
@ -1209,7 +1211,6 @@ struct net_device * __init i82596_probe(int unit)
goto out1; goto out1;
} }
dev->base_addr = ioaddr;
dev->irq = 10; dev->irq = 10;
} }
#endif #endif

View file

@ -265,7 +265,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = &genphy_read_status, .read_status = &genphy_read_status,
.ack_interrupt = &marvell_ack_interrupt, .ack_interrupt = &marvell_ack_interrupt,
.config_intr = &marvell_config_intr, .config_intr = &marvell_config_intr,
.driver = {.owner = THIS_MODULE,}, .driver = { .owner = THIS_MODULE },
}, },
{ {
.phy_id = 0x01410c90, .phy_id = 0x01410c90,
@ -278,7 +278,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = &genphy_read_status, .read_status = &genphy_read_status,
.ack_interrupt = &marvell_ack_interrupt, .ack_interrupt = &marvell_ack_interrupt,
.config_intr = &marvell_config_intr, .config_intr = &marvell_config_intr,
.driver = {.owner = THIS_MODULE,}, .driver = { .owner = THIS_MODULE },
}, },
{ {
.phy_id = 0x01410cc0, .phy_id = 0x01410cc0,
@ -291,7 +291,7 @@ static struct phy_driver marvell_drivers[] = {
.read_status = &genphy_read_status, .read_status = &genphy_read_status,
.ack_interrupt = &marvell_ack_interrupt, .ack_interrupt = &marvell_ack_interrupt,
.config_intr = &marvell_config_intr, .config_intr = &marvell_config_intr,
.driver = {.owner = THIS_MODULE,}, .driver = { .owner = THIS_MODULE },
}, },
{ {
.phy_id = 0x01410cd0, .phy_id = 0x01410cd0,
@ -304,8 +304,21 @@ static struct phy_driver marvell_drivers[] = {
.read_status = &genphy_read_status, .read_status = &genphy_read_status,
.ack_interrupt = &marvell_ack_interrupt, .ack_interrupt = &marvell_ack_interrupt,
.config_intr = &marvell_config_intr, .config_intr = &marvell_config_intr,
.driver = {.owner = THIS_MODULE,}, .driver = { .owner = THIS_MODULE },
} },
{
.phy_id = 0x01410e30,
.phy_id_mask = 0xfffffff0,
.name = "Marvell 88E1240",
.features = PHY_GBIT_FEATURES,
.flags = PHY_HAS_INTERRUPT,
.config_init = &m88e1111_config_init,
.config_aneg = &marvell_config_aneg,
.read_status = &genphy_read_status,
.ack_interrupt = &marvell_ack_interrupt,
.config_intr = &marvell_config_intr,
.driver = { .owner = THIS_MODULE },
},
}; };
static int __init marvell_init(void) static int __init marvell_init(void)

View file

@ -706,7 +706,7 @@ int phy_driver_register(struct phy_driver *new_driver)
return retval; return retval;
} }
pr_info("%s: Registered new driver\n", new_driver->name); pr_debug("%s: Registered new driver\n", new_driver->name);
return 0; return 0;
} }

View file

@ -3143,8 +3143,8 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev,
dev->irq = pdev->irq; dev->irq = pdev->irq;
dev->dma = 0; dev->dma = 0;
/* Happy Meal can do it all... */ /* Happy Meal can do it all... except VLAN. */
dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_VLAN_CHALLENGED;
#if defined(CONFIG_SBUS) && defined(CONFIG_PCI) #if defined(CONFIG_SBUS) && defined(CONFIG_PCI)
/* Hook up PCI register/dma accessors. */ /* Hook up PCI register/dma accessors. */