Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752495AbbETI35 (ORCPT ); Wed, 20 May 2015 04:29:57 -0400 Received: from lb3-smtp-cloud6.xs4all.net ([194.109.24.31]:54312 "EHLO lb3-smtp-cloud6.xs4all.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751501AbbETI3z (ORCPT ); Wed, 20 May 2015 04:29:55 -0400 Message-ID: <1432110592.21715.50.camel@x220> Subject: Re: [PATCH v1 2/3] scsi: ufs-qcom: fix compilation warning if compiled as a module From: Paul Bolle To: Yaniv Gardi Cc: James.Bottomley@HansenPartnership.com, kishon@ti.com, linux-kernel@vger.kernel.org, linux-scsi@vger.kernel.org, linux-arm-msm@vger.kernel.org, santoshsy@gmail.com, linux-scsi-owner@vger.kernel.org, subhashj@codeaurora.org, gbroner@codeaurora.org, dovl@codeaurora.org, Vinayak Holikatti , "James E.J. Bottomley" Date: Wed, 20 May 2015 10:29:52 +0200 In-Reply-To: <1432043231-31102-3-git-send-email-ygardi@codeaurora.org> References: <1432043231-31102-1-git-send-email-ygardi@codeaurora.org> <1432043231-31102-3-git-send-email-ygardi@codeaurora.org> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.10.4 (3.10.4-4.fc20) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 948 Lines: 28 On Tue, 2015-05-19 at 16:47 +0300, Yaniv Gardi wrote: > --- a/drivers/scsi/ufs/ufs-qcom.c > +++ b/drivers/scsi/ufs/ufs-qcom.c > @@ -885,7 +885,7 @@ out: > > #define ANDROID_BOOT_DEV_MAX 30 > static char android_boot_dev[ANDROID_BOOT_DEV_MAX]; > -static int get_android_boot_dev(char *str) > +static int __maybe_unused get_android_boot_dev(char *str) > { > strlcpy(android_boot_dev, str, ANDROID_BOOT_DEV_MAX); > return 1; Wouldn't it be clearer to wrap these few lines (until after the __setup() macro) with #ifndef MODULE? And I think get_android_boot_dev() could be marked __init. Because if it's built-in it will never be called after the kernel has finished booting, right? Paul Bolle -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/