Commit 3692caa6 authored by Hirofumi Ogawa's avatar Hirofumi Ogawa Committed by Jeff Garzik

[netdrvr 8139too] remove unused RxConfigMask

parent 52dde401
...@@ -514,42 +514,35 @@ enum chip_flags { ...@@ -514,42 +514,35 @@ enum chip_flags {
const static struct { const static struct {
const char *name; const char *name;
u8 version; /* from RTL8139C docs */ u8 version; /* from RTL8139C docs */
u32 RxConfigMask; /* should clear the bits supported by this chip */
u32 flags; u32 flags;
} rtl_chip_info[] = { } rtl_chip_info[] = {
{ "RTL-8139", { "RTL-8139",
0x40, 0x40,
0xf0fe0040, /* XXX copied from RTL8139A, verify */
HasHltClk, HasHltClk,
}, },
{ "RTL-8139 rev K", { "RTL-8139 rev K",
0x60, 0x60,
0xf0fe0040,
HasHltClk, HasHltClk,
}, },
{ "RTL-8139A", { "RTL-8139A",
0x70, 0x70,
0xf0fe0040,
HasHltClk, /* XXX undocumented? */ HasHltClk, /* XXX undocumented? */
}, },
{ "RTL-8139B", { "RTL-8139B",
0x78, 0x78,
0xf0fc0040,
HasLWake, HasLWake,
}, },
{ "RTL-8130", { "RTL-8130",
0x7C, 0x7C,
0xf0fe0040, /* XXX copied from RTL8139A, verify */
HasLWake, HasLWake,
}, },
{ "RTL-8139C", { "RTL-8139C",
0x74, 0x74,
0xf0fc0040, /* XXX copied from RTL8139B, verify */
HasLWake, HasLWake,
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment