From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753240AbaE0SPm (ORCPT ); Tue, 27 May 2014 14:15:42 -0400 Received: from mail-ob0-f180.google.com ([209.85.214.180]:64940 "EHLO mail-ob0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753192AbaE0SPl (ORCPT ); Tue, 27 May 2014 14:15:41 -0400 Message-ID: <5384D64A.8040603@lwfinger.net> Date: Tue, 27 May 2014 13:15:38 -0500 From: Larry Finger User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Jim Davis , Stephen Rothwell , linux-next , linux-kernel , Greg Kroah-Hartman , devel Subject: Re: randconfig build error with next-20140527, in drivers/staging/rtl8192ee References: In-Reply-To: Content-Type: multipart/mixed; boundary="------------090704010600060209040804" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This is a multi-part message in MIME format. --------------090704010600060209040804 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 05/27/2014 12:27 PM, Jim Davis wrote: > Building with the attached random configuration file, A problem with the build when PCI is not selected was reported yesterday. I think this build error is caused by MAC80211 not being selected. The fix for both problems was merged as commit 42e4c20f114c71e12cdf35d9b5dd60d2546c7d57 yesterday in staging-next. If it has not reached linux-next, the attached patch should fix the problem. Thanks, Larry --------------090704010600060209040804 Content-Type: text/x-patch; name="0002-staging-r8192ee-Fix-build-errors-when-PCI-is-not-ava.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename*0="0002-staging-r8192ee-Fix-build-errors-when-PCI-is-not-ava.pa"; filename*1="tch" >>From d10ca90ffaf99f43bb61d5b4001f6a6acfde3454 Mon Sep 17 00:00:00 2001 From: Larry Finger Date: Mon, 26 May 2014 13:35:48 -0500 Subject: [PATCH 2/3] staging: r8192ee: Fix build errors when PCI is not available To: gregkh@linuxfoundation.org Cc: netdev@vger.kernel.org, devel@driverdev.osuosl.org A build of this driver fails when PCI is not selected. It would also fail if MAC80211 is not selected. Kconfig is fixed to handle these conditions, and to select additional necessary components. Reported-by: Randy Dunlap Reported-by: Ben Hutchings Signed-off-by: Larry Finger --- drivers/staging/rtl8192ee/Kconfig | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/staging/rtl8192ee/Kconfig b/drivers/staging/rtl8192ee/Kconfig index 92c5f44..beb07ac2 100644 --- a/drivers/staging/rtl8192ee/Kconfig +++ b/drivers/staging/rtl8192ee/Kconfig @@ -1,6 +1,13 @@ config R8192EE tristate "Realtek RTL8192EE Wireless Network Adapter" + depends on PCI && WLAN && MAC80211 + depends on m + select WIRELESS_EXT + select WEXT_PRIV + select EEPROM_93CX6 + select CRYPTO select FW_LOADER + default N ---help--- This is the driver for Realtek RTL8192EE 802.11 PCIe wireless network adapters. -- 1.8.4.5 --------------090704010600060209040804--