Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 56541
b: refs/heads/master
c: abc368a
h: refs/heads/master
i:
  56539: ece03db
v: v3
  • Loading branch information
Stephen Hemminger authored and Jeff Garzik committed May 18, 2007
1 parent b21ad11 commit ffe83e7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 31 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0479ea0eab197b3e5d4c731f526c02e5e3fbfbd0
refs/heads/master: abc368a17c00b3c7837498cdb4e166cfdeefbe98
30 changes: 0 additions & 30 deletions trunk/drivers/net/sky2.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
#include <linux/if_vlan.h>
#include <linux/prefetch.h>
#include <linux/mii.h>
#include <linux/dmi.h>

#include <asm/irq.h>

Expand Down Expand Up @@ -151,8 +150,6 @@ static const char *yukon2_name[] = {
"FE", /* 0xb7 */
};

static int dmi_blacklisted;

/* Access to external PHY */
static int gm_phy_write(struct sky2_hw *hw, unsigned port, u16 reg, u16 val)
{
Expand Down Expand Up @@ -2534,17 +2531,6 @@ static int __devinit sky2_init(struct sky2_hw *hw)
return -EOPNOTSUPP;
}


/* Some Gigabyte motherboards have 88e8056 but cause problems
* There is some unresolved hardware related problem that causes
* descriptor errors and receive data corruption.
*/
if (hw->chip_id == CHIP_ID_YUKON_EC_U && dmi_blacklisted) {
dev_err(&hw->pdev->dev,
"88E8056 on this motherboard not supported\n");
return -EOPNOTSUPP;
}

hw->pmd_type = sky2_read8(hw, B2_PMD_TYP);
hw->ports = 1;
t8 = sky2_read8(hw, B2_Y2_HW_RES);
Expand Down Expand Up @@ -3910,24 +3896,8 @@ static struct pci_driver sky2_driver = {
.shutdown = sky2_shutdown,
};

static struct dmi_system_id __initdata broken_dmi_table[] = {
{
.ident = "Gigabyte 965P-S3",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "Gigabyte Technology Co., Ltd."),
DMI_MATCH(DMI_PRODUCT_NAME, "965P-S3"),

},
},
{ }
};

static int __init sky2_init_module(void)
{
/* Look for sick motherboards */
if (dmi_check_system(broken_dmi_table))
dmi_blacklisted = 1;

return pci_register_driver(&sky2_driver);
}

Expand Down

0 comments on commit ffe83e7

Please sign in to comment.