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

(-)hybrid_wl.old/src/wl/sys/wl_iw.c (-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,
(-)hybrid_wl.old/src/wl/sys/wl_linux.c (-1 / +9 lines)
Lines 246-251 Link Here
246
};
246
};
247
MODULE_DEVICE_TABLE(pci, wl_id_table);
247
MODULE_DEVICE_TABLE(pci, wl_id_table);
248
248
249
MODULE_LICENSE("MIXED/Proprietary");
250
249
#ifdef BCMDBG
251
#ifdef BCMDBG
250
static int msglevel = 0xdeadbeef;
252
static int msglevel = 0xdeadbeef;
251
module_param(msglevel, int, 0);
253
module_param(msglevel, int, 0);
Lines 289-294 Link Here
289
#endif 
291
#endif 
290
}
292
}
291
293
294
extern int dev_wlc_intvar_set(struct net_device *dev, char *name, int val);
295
292
static wl_info_t *
296
static wl_info_t *
293
wl_attach(uint16 vendor, uint16 device, ulong regs, uint bustype, void *btparam, uint irq)
297
wl_attach(uint16 vendor, uint16 device, ulong regs, uint bustype, void *btparam, uint irq)
294
{
298
{
Lines 437-443 Link Here
437
#endif
441
#endif
438
442
439
	printf("%s: Broadcom BCM%04x 802.11 Wireless Controller " EPI_VERSION_STR,
443
	printf("%s: Broadcom BCM%04x 802.11 Wireless Controller " EPI_VERSION_STR,
440
		dev->name, device);
444
			dev->name, device);
445
446
	/* Work around. Default vlan_mode to off */
447
	wlc_iovar_setint(wl->wlc, "vlan_mode", OFF);
448
441
449
442
#ifdef BCMDBG
450
#ifdef BCMDBG
443
	printf(" (Compiled in " SRCBASE " at " __TIME__ " on " __DATE__ ")");
451
	printf(" (Compiled in " SRCBASE " at " __TIME__ " on " __DATE__ ")");

Return to bug 248450