~ubuntu-branches/debian/wheezy/linux-2.6/wheezy

« back to all changes in this revision

Viewing changes to drivers/net/Space.c

  • Committer: Bazaar Package Importer
  • Author(s): Ben Hutchings, Ben Hutchings, Aurelien Jarno, Martin Michlmayr
  • Date: 2011-04-06 13:53:30 UTC
  • mfrom: (43.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110406135330-wjufxhd0tvn3zx4z
Tags: 2.6.38-3
[ Ben Hutchings ]
* [ppc64] Add to linux-tools package architectures (Closes: #620124)
* [amd64] Save cr4 to mmu_cr4_features at boot time (Closes: #620284)
* appletalk: Fix bugs introduced when removing use of BKL
* ALSA: Fix yet another race in disconnection
* cciss: Fix lost command issue
* ath9k: Fix kernel panic in AR2427
* ses: Avoid kernel panic when lun 0 is not mapped
* PCI/ACPI: Report ASPM support to BIOS if not disabled from command line

[ Aurelien Jarno ]
* rtlwifi: fix build when PCI is not enabled.

[ Martin Michlmayr ]
* rtlwifi: Eliminate udelay calls with too large values (Closes: #620204)

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
extern struct net_device *i82596_probe(int unit);
56
56
extern struct net_device *ewrk3_probe(int unit);
57
57
extern struct net_device *el1_probe(int unit);
58
 
extern struct net_device *wavelan_probe(int unit);
59
 
extern struct net_device *arlan_probe(int unit);
60
58
extern struct net_device *el16_probe(int unit);
61
59
extern struct net_device *elmc_probe(int unit);
62
60
extern struct net_device *elplus_probe(int unit);
68
66
extern struct net_device *ni52_probe(int unit);
69
67
extern struct net_device *ni65_probe(int unit);
70
68
extern struct net_device *sonic_probe(int unit);
71
 
extern struct net_device *SK_init(int unit);
72
69
extern struct net_device *seeq8005_probe(int unit);
73
70
extern struct net_device *smc_init(int unit);
74
71
extern struct net_device *atarilance_probe(int unit);
76
73
extern struct net_device *sun3_82586_probe(int unit);
77
74
extern struct net_device *apne_probe(int unit);
78
75
extern struct net_device *cs89x0_probe(int unit);
79
 
extern struct net_device *hplance_probe(int unit);
80
 
extern struct net_device *bagetlance_probe(int unit);
81
76
extern struct net_device *mvme147lance_probe(int unit);
82
77
extern struct net_device *tc515_probe(int unit);
83
78
extern struct net_device *lance_probe(int unit);
218
213
#ifdef CONFIG_EL1               /* 3c501 */
219
214
        {el1_probe, 0},
220
215
#endif
221
 
#ifdef CONFIG_WAVELAN           /* WaveLAN */
222
 
        {wavelan_probe, 0},
223
 
#endif
224
 
#ifdef CONFIG_ARLAN             /* Aironet */
225
 
        {arlan_probe, 0},
226
 
#endif
227
216
#ifdef CONFIG_EL16              /* 3c507 */
228
217
        {el16_probe, 0},
229
218
#endif