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

Collapse All | Expand All

(-)ndiswrapper-1.55/driver/Makefile (-1 / +1 lines)
Lines 171-177 Link Here
171
		echo; echo; \
171
		echo; echo; \
172
		exit 1; \
172
		exit 1; \
173
	fi
173
	fi
174
	@if [ -z "$(CONFIG_WIRELESS_EXT)$(CONFIG_NET_RADIO)" ]; then \
174
	@if [ -z "$(CONFIG_CFG80211_WEXT)$(CONFIG_NET_RADIO)" ]; then \
175
		echo; echo; \
175
		echo; echo; \
176
		echo "*** WARNING: This kernel lacks wireless extensions."; \
176
		echo "*** WARNING: This kernel lacks wireless extensions."; \
177
		echo "Wireless drivers will not work properly."; \
177
		echo "Wireless drivers will not work properly."; \
(-)ndiswrapper-1.55/driver/ndis.c (-1 / +1 lines)
Lines 2027-2033 Link Here
2027
		switch (si->status_type) {
2027
		switch (si->status_type) {
2028
		case Ndis802_11StatusType_MediaStreamMode:
2028
		case Ndis802_11StatusType_MediaStreamMode:
2029
			break;
2029
			break;
2030
#ifdef CONFIG_WIRELESS_EXT
2030
#ifdef CONFIG_CFG80211_WEXT
2031
		case Ndis802_11StatusType_Authentication:
2031
		case Ndis802_11StatusType_Authentication:
2032
			buf = (char *)buf + sizeof(*si);
2032
			buf = (char *)buf + sizeof(*si);
2033
			len -= sizeof(*si);
2033
			len -= sizeof(*si);
(-)ndiswrapper-1.55/driver/ntoskernel.h (-2 / +2 lines)
Lines 82-89 Link Here
82
#define PCI_DMA_MAP_ERROR(dma_addr) dma_mapping_error(dma_addr)
82
#define PCI_DMA_MAP_ERROR(dma_addr) dma_mapping_error(dma_addr)
83
83
84
84
85
#if defined(CONFIG_NET_RADIO) && !defined(CONFIG_WIRELESS_EXT)
85
#if defined(CONFIG_NET_RADIO) && !defined(CONFIG_CFG80211_WEXT)
86
#define CONFIG_WIRELESS_EXT
86
#define CONFIG_CFG80211_WEXT
87
#endif
87
#endif
88
88
89
#define prepare_wait_condition(task, var, value)	\
89
#define prepare_wait_condition(task, var, value)	\
(-)ndiswrapper-1.55/driver/wrapndis.c (-3 / +3 lines)
Lines 988-994 Link Here
988
988
989
static void link_status_off(struct ndis_device *wnd)
989
static void link_status_off(struct ndis_device *wnd)
990
{
990
{
991
#ifdef CONFIG_WIRELESS_EXT
991
#ifdef CONFIG_CFG80211_WEXT
992
	union iwreq_data wrqu;
992
	union iwreq_data wrqu;
993
993
994
	memset(&wrqu, 0, sizeof(wrqu));
994
	memset(&wrqu, 0, sizeof(wrqu));
Lines 1000-1006 Link Here
1000
1000
1001
static void link_status_on(struct ndis_device *wnd)
1001
static void link_status_on(struct ndis_device *wnd)
1002
{
1002
{
1003
#ifdef CONFIG_WIRELESS_EXT
1003
#ifdef CONFIG_CFG80211_WEXT
1004
	struct ndis_assoc_info *ndis_assoc_info;
1004
	struct ndis_assoc_info *ndis_assoc_info;
1005
	union iwreq_data wrqu;
1005
	union iwreq_data wrqu;
1006
	NDIS_STATUS res;
1006
	NDIS_STATUS res;
Lines 1008-1014 Link Here
1008
#endif
1008
#endif
1009
1009
1010
	ENTER2("");
1010
	ENTER2("");
1011
#ifdef CONFIG_WIRELESS_EXT
1011
#ifdef CONFIG_CFG80211_WEXT
1012
	memset(&wrqu, 0, sizeof(wrqu));
1012
	memset(&wrqu, 0, sizeof(wrqu));
1013
	ndis_assoc_info = kzalloc(assoc_size, GFP_KERNEL);
1013
	ndis_assoc_info = kzalloc(assoc_size, GFP_KERNEL);
1014
	if (!ndis_assoc_info) {
1014
	if (!ndis_assoc_info) {

Return to bug 280057