* [PATCH] staging: r8723au: Fix randconfig build errors
@ 2014-04-06 3:48 Larry Finger
2014-04-06 4:09 ` Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: Larry Finger @ 2014-04-06 3:48 UTC (permalink / raw)
To: gregkh
Cc: netdev, devel, Larry Finger, Jes Sorensen, kbuild test robot,
kbuild-all
The kbuild test robot got the following errors for i386-randconfig-c0-04060652:
ERROR: "wiphy_free" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "bridge_tunnel_header" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "ieee80211_frequency_to_channel" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "cfg80211_rx_mgmt" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "ieee80211_channel_to_frequency" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "cfg80211_mgmt_tx_status" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "rfc1042_header" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "__ieee80211_get_channel" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "wiphy_unregister" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "cfg80211_connect_result" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "cfg80211_michael_mic_failure" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "cfg80211_roamed" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "cfg80211_put_bss" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "wiphy_new" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "wiphy_register" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "cfg80211_inform_bss_width_frame" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "cfg80211_disconnected" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "ieee80211_amsdu_to_8023s" [drivers/staging/rtl8723au/r8723au.ko] undefined!
ERROR: "cfg80211_scan_done" [drivers/staging/rtl8723au/r8723au.ko] undefined!
All of these are fixed by forcing the selection of CFG80211 in Kconfig.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Cc: Jes Sorensen <Jes.Sorensen@redhat.com>
Cc: kbuild test robot <fengguang.wu@intel.com>
Cc: kbuild-all@01.org
---
drivers/staging/rtl8723au/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/staging/rtl8723au/Kconfig b/drivers/staging/rtl8723au/Kconfig
index 7f19d15..78e8805 100644
--- a/drivers/staging/rtl8723au/Kconfig
+++ b/drivers/staging/rtl8723au/Kconfig
@@ -3,6 +3,7 @@ config R8723AU
depends on WLAN && USB
select WIRELESS_EXT
select WEXT_PRIV
+ select CFG80211
default n
---help---
This option adds the Realtek RTL8723AU USB device such as found in
--
1.8.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] staging: r8723au: Fix randconfig build errors
2014-04-06 3:48 [PATCH] staging: r8723au: Fix randconfig build errors Larry Finger
@ 2014-04-06 4:09 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2014-04-06 4:09 UTC (permalink / raw)
To: Larry Finger; +Cc: devel, netdev, kbuild test robot, kbuild-all, Jes Sorensen
On Sat, Apr 05, 2014 at 10:48:59PM -0500, Larry Finger wrote:
> The kbuild test robot got the following errors for i386-randconfig-c0-04060652:
>
> ERROR: "wiphy_free" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "bridge_tunnel_header" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "ieee80211_frequency_to_channel" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "cfg80211_rx_mgmt" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "ieee80211_channel_to_frequency" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "cfg80211_mgmt_tx_status" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "rfc1042_header" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "__ieee80211_get_channel" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "wiphy_unregister" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "cfg80211_connect_result" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "cfg80211_michael_mic_failure" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "cfg80211_roamed" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "cfg80211_put_bss" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "wiphy_new" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "wiphy_register" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "cfg80211_inform_bss_width_frame" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "cfg80211_disconnected" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "ieee80211_amsdu_to_8023s" [drivers/staging/rtl8723au/r8723au.ko] undefined!
> ERROR: "cfg80211_scan_done" [drivers/staging/rtl8723au/r8723au.ko] undefined!
>
> All of these are fixed by forcing the selection of CFG80211 in Kconfig.
>
> Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
> Cc: Jes Sorensen <Jes.Sorensen@redhat.com>
> Cc: kbuild test robot <fengguang.wu@intel.com>
This should have been "Reported-by:" I'll fix that up by hand...
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-04-06 4:09 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-06 3:48 [PATCH] staging: r8723au: Fix randconfig build errors Larry Finger
2014-04-06 4:09 ` Greg KH
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.