Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 248450 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-3 / +10 lines)
Line  Link Here
0
-- hybrid_wl.old/src/wl/sys/wl_iw.c
0
++ hybrid_wl/src/wl/sys/wl_iw.c
Lines 124-130 dev_wlc_ioctl( Link Here
124
	return ret;
124
	return ret;
125
}
125
}
126
126
127
static int
127
int
128
dev_wlc_intvar_set(
128
dev_wlc_intvar_set(
129
	struct net_device *dev,
129
	struct net_device *dev,
130
	char *name,
130
	char *name,
131
-- hybrid_wl.old/src/wl/sys/wl_linux.c
131
++ hybrid_wl/src/wl/sys/wl_linux.c
Lines 245-250 static struct pci_device_id wl_id_table[] = { Link Here
245
};
245
};
246
MODULE_DEVICE_TABLE(pci, wl_id_table);
246
MODULE_DEVICE_TABLE(pci, wl_id_table);
247
247
248
MODULE_LICENSE("MIXED/Proprietary");
249
248
#ifdef BCMDBG
250
#ifdef BCMDBG
249
static int msglevel = 0xdeadbeef;
251
static int msglevel = 0xdeadbeef;
250
module_param(msglevel, int, 0);
252
module_param(msglevel, int, 0);
Lines 288-293 void wl_if_setup(struct net_device *dev) Link Here
288
#endif 
290
#endif 
289
}
291
}
290
292
293
extern int dev_wlc_intvar_set(struct net_device *dev, char *name, int val);
294
291
static wl_info_t *
295
static wl_info_t *
292
wl_attach(uint16 vendor, uint16 device, ulong regs, uint bustype, void *btparam, uint irq)
296
wl_attach(uint16 vendor, uint16 device, ulong regs, uint bustype, void *btparam, uint irq)
293
{
297
{
Lines 438-443 wl_attach(uint16 vendor, uint16 device, ulong regs, uint bustype, void *btparam, Link Here
438
	printf("%s: Broadcom BCM%04x 802.11 Wireless Controller " EPI_VERSION_STR,
442
	printf("%s: Broadcom BCM%04x 802.11 Wireless Controller " EPI_VERSION_STR,
439
		dev->name, device);
443
		dev->name, device);
440
444
445
	/* Work around. Default vlan_mode to off */
446
       wlc_iovar_setint(wl->wlc, "vlan_mode", OFF);
447
441
#ifdef BCMDBG
448
#ifdef BCMDBG
442
	printf(" (Compiled in " SRCBASE " at " __TIME__ " on " __DATE__ ")");
449
	printf(" (Compiled in " SRCBASE " at " __TIME__ " on " __DATE__ ")");
443
#endif 
450
#endif 

Return to bug 248450