From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755756Ab3KOBex (ORCPT ); Thu, 14 Nov 2013 20:34:53 -0500 Received: from intranet.asianux.com ([58.214.24.6]:25029 "EHLO intranet.asianux.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755122Ab3KOBer (ORCPT ); Thu, 14 Nov 2013 20:34:47 -0500 X-Spam-Score: -100.8 Message-ID: <52857ABA.2020800@asianux.com> Date: Fri, 15 Nov 2013 09:36:58 +0800 From: Chen Gang User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130110 Thunderbird/17.0.2 MIME-Version: 1.0 To: Tony Lindgren CC: Greg KH , linux-usb@vger.kernel.org, "linux-kernel@vger.kernel.org" , "linux-arm-kernel@lists.infradead.org" , Will Deacon , Catalin Marinas , Russell King - ARM Linux , Felipe Balbi Subject: Re: [PATCH] include/linux/usb/usb_phy_gen_xceiv.h: check built-in or module for swithing usb_nop_xceiv_register() implementation References: <52679D19.903@asianux.com> <20131114183742.GN10317@atomide.com> In-Reply-To: <20131114183742.GN10317@atomide.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 11/15/2013 02:37 AM, Tony Lindgren wrote: > * Chen Gang [131023 02:57]: >> When CONFIG_NOP_USB_XCEIV is as 'm', usb_nop_xceiv_register() will be >> exported when the related module is loaded. So for built-in source >> code, still need use the empty one. >> >> Or it will can not pass compiling, the related error (for arm, with >> allmodconfig): >> >> arch/arm/mach-omap2/built-in.o: In function `omap3_evm_init': >> arch/arm/mach-omap2/board-omap3evm.c:703: undefined reference to `usb_nop_xceiv_register' >> >> >> Signed-off-by: Chen Gang > > Added Felipe to cc, he should probably deal with this one. > OK, thank you very much. And welcome Felipe to help checking, when he has time. :-) > Regards, > > Tony > >> --- >> include/linux/usb/usb_phy_gen_xceiv.h | 3 ++- >> 1 files changed, 2 insertions(+), 1 deletions(-) >> >> diff --git a/include/linux/usb/usb_phy_gen_xceiv.h b/include/linux/usb/usb_phy_gen_xceiv.h >> index f9a7e7b..8515958 100644 >> --- a/include/linux/usb/usb_phy_gen_xceiv.h >> +++ b/include/linux/usb/usb_phy_gen_xceiv.h >> @@ -12,7 +12,8 @@ struct usb_phy_gen_xceiv_platform_data { >> unsigned int needs_reset:1; >> }; >> >> -#if IS_ENABLED(CONFIG_NOP_USB_XCEIV) >> +#if IS_BUILTIN(CONFIG_NOP_USB_XCEIV) || \ >> + (IS_MODULE(CONFIG_NOP_USB_XCEIV) && defined(MODULE)) >> /* sometimes transceivers are accessed only through e.g. ULPI */ >> extern void usb_nop_xceiv_register(void); >> extern void usb_nop_xceiv_unregister(void); >> -- >> 1.7.7.6 > > -- Chen Gang