diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-02 11:56:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-02 11:56:58 -0400 |
commit | 95f3eff6997ae4a6754c1d874ec0a414d97c44d1 (patch) | |
tree | 0aba758649b4f56264cbe9736f6db18a98b9cc1f /drivers/net/hp100.c | |
parent | 44f549217cd26daf7063984ae4ee6e46beca9c41 (diff) | |
parent | 2c81fbc4cfc895e80c18fffdc04a3d870eb16cb8 (diff) |
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: (37 commits)
[netdrvr] hp100: encapsulate all non-module code
drivers/net/wireless/{airo,ipw2100}: fix error handling bugs
[netdrvr] phy: Fix bugs in error handling
[PATCH] spidernet: Use pci_dma_mapping_error()
[PATCH] sky2: version 1.9
[PATCH] sky2: fragmented receive for large MTU
[PATCH] sky2: use netif_tx_lock instead of LLTX
[PATCH] sky2: incremental transmit completion
[PATCH] sky2: name irq after eth for irqbalance
[PATCH] sky2: workarounds for some 88e806x chips
[PATCH] sky2: use standard pci register capabilties for error register
[PATCH] sky2: gigabit full duplex negotiation
e100, e1000, ixgb: increment version numbers
ixgb: convert to netdev_priv(netdev)
ixgb: combine more rx descriptors to improve performance
e1000: possible memory leak in e1000_set_ringparam
e1000: Janitor: Use #defined values for literals
e1000: don't strip vlan ID if 8021q claims it
e1000: rework polarity, NVM, eeprom code and fixes.
e1000: driver state fixes (race fix)
...
Diffstat (limited to 'drivers/net/hp100.c')
-rw-r--r-- | drivers/net/hp100.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/hp100.c b/drivers/net/hp100.c index 03b3df33d81b..561db440bc2c 100644 --- a/drivers/net/hp100.c +++ b/drivers/net/hp100.c | |||
@@ -188,10 +188,12 @@ struct hp100_private { | |||
188 | /* | 188 | /* |
189 | * variables | 189 | * variables |
190 | */ | 190 | */ |
191 | #ifndef MODULE | ||
191 | static const char *hp100_isa_tbl[] = { | 192 | static const char *hp100_isa_tbl[] = { |
192 | "HWPF150", /* HP J2573 rev A */ | 193 | "HWPF150", /* HP J2573 rev A */ |
193 | "HWP1950", /* HP J2573 */ | 194 | "HWP1950", /* HP J2573 */ |
194 | }; | 195 | }; |
196 | #endif | ||
195 | 197 | ||
196 | #ifdef CONFIG_EISA | 198 | #ifdef CONFIG_EISA |
197 | static struct eisa_device_id hp100_eisa_tbl[] = { | 199 | static struct eisa_device_id hp100_eisa_tbl[] = { |
@@ -333,6 +335,7 @@ static __devinit const char *hp100_read_id(int ioaddr) | |||
333 | return str; | 335 | return str; |
334 | } | 336 | } |
335 | 337 | ||
338 | #ifndef MODULE | ||
336 | static __init int hp100_isa_probe1(struct net_device *dev, int ioaddr) | 339 | static __init int hp100_isa_probe1(struct net_device *dev, int ioaddr) |
337 | { | 340 | { |
338 | const char *sig; | 341 | const char *sig; |
@@ -391,8 +394,6 @@ static int __init hp100_isa_probe(struct net_device *dev, int addr) | |||
391 | return err; | 394 | return err; |
392 | } | 395 | } |
393 | 396 | ||
394 | |||
395 | #ifndef MODULE | ||
396 | struct net_device * __init hp100_probe(int unit) | 397 | struct net_device * __init hp100_probe(int unit) |
397 | { | 398 | { |
398 | struct net_device *dev = alloc_etherdev(sizeof(struct hp100_private)); | 399 | struct net_device *dev = alloc_etherdev(sizeof(struct hp100_private)); |