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

Collapse All | Expand All

(-)a/src/wl/sys/wl_linux.c (-1 / +4 lines)
Lines 1308-1314 wl_alloc_linux_if(wl_if_t *wlif) Link Here
1308
	dev->priv = priv_link;
1308
	dev->priv = priv_link;
1309
#else
1309
#else
1310
1310
1311
#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 17, 0))
1311
	dev = alloc_netdev(sizeof(priv_link_t), intf_name, ether_setup);
1312
	dev = alloc_netdev(sizeof(priv_link_t), intf_name, ether_setup);
1313
#else
1314
	dev = alloc_netdev(sizeof(priv_link_t), intf_name, NET_NAME_UNKNOWN, ether_setup);
1315
#endif
1312
	if (!dev) {
1316
	if (!dev) {
1313
		WL_ERROR(("wl%d: %s: alloc_netdev failed\n",
1317
		WL_ERROR(("wl%d: %s: alloc_netdev failed\n",
1314
			(wl->pub)?wl->pub->unit:wlif->subunit, __FUNCTION__));
1318
			(wl->pub)?wl->pub->unit:wlif->subunit, __FUNCTION__));
1315
- 

Return to bug 523326