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

(-)src/wl/sys/wl_iw.c.orig (-1 / +1 lines)
Lines 124-130 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,
(-)src/wl/sys/wl_linux.c.orig (+8 lines)
Lines 247-252 Link Here
247
};
247
};
248
MODULE_DEVICE_TABLE(pci, wl_id_table);
248
MODULE_DEVICE_TABLE(pci, wl_id_table);
249
249
250
MODULE_LICENSE("MIXED/Proprietary");
251
250
#ifdef BCMDBG
252
#ifdef BCMDBG
251
static int msglevel = 0xdeadbeef;
253
static int msglevel = 0xdeadbeef;
252
module_param(msglevel, int, 0);
254
module_param(msglevel, int, 0);
Lines 305-310 Link Here
305
#endif 
307
#endif 
306
}
308
}
307
309
310
extern int dev_wlc_intvar_set(struct net_device *dev, char *name, int val);
311
308
static wl_info_t *
312
static wl_info_t *
309
wl_attach(uint16 vendor, uint16 device, ulong regs, uint bustype, void *btparam, uint irq)
313
wl_attach(uint16 vendor, uint16 device, ulong regs, uint bustype, void *btparam, uint irq)
310
{
314
{
Lines 455-460 Link Here
455
	printf("%s: Broadcom BCM%04x 802.11 Wireless Controller " EPI_VERSION_STR,
459
	printf("%s: Broadcom BCM%04x 802.11 Wireless Controller " EPI_VERSION_STR,
456
		dev->name, device);
460
		dev->name, device);
457
461
462
	/* Work around. Default vlan_mode to off */
463
	wlc_iovar_setint(wl->wlc, "vlan_mode", OFF);
464
465
458
#ifdef BCMDBG
466
#ifdef BCMDBG
459
	printf(" (Compiled in " SRCBASE " at " __TIME__ " on " __DATE__ ")");
467
	printf(" (Compiled in " SRCBASE " at " __TIME__ " on " __DATE__ ")");
460
#endif 
468
#endif 

Return to bug 248450