From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andy Shevchenko Subject: Re: [PATCH v2 19/36] platform/x86: intel_pmc_ipc: Make intel_pmc_ipc_simple_command() static Date: Wed, 8 Jan 2020 18:46:25 +0200 Message-ID: <20200108164625.GI32742@smile.fi.intel.com> References: <20200108114201.27908-1-mika.westerberg@linux.intel.com> <20200108114201.27908-20-mika.westerberg@linux.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20200108114201.27908-20-mika.westerberg@linux.intel.com> Sender: linux-kernel-owner@vger.kernel.org To: Mika Westerberg Cc: Darren Hart , Lee Jones , Thomas Gleixner , Ingo Molnar , Borislav Petkov , "H . Peter Anvin" , x86@kernel.org, Zha Qipeng , Rajneesh Bhardwaj , "David E . Box" , Guenter Roeck , Heikki Krogerus , Greg Kroah-Hartman , Wim Van Sebroeck , platform-driver-x86@vger.kernel.org, linux-kernel@vger.kernel.org List-Id: platform-driver-x86.vger.kernel.org On Wed, Jan 08, 2020 at 02:41:44PM +0300, Mika Westerberg wrote: > This function is not called outside of intel_pmc_ipc.c so we can make it > static instead. Reviewed-by: Andy Shevchenko > > Signed-off-by: Mika Westerberg > --- > arch/x86/include/asm/intel_pmc_ipc.h | 6 ------ > drivers/platform/x86/intel_pmc_ipc.c | 3 +-- > 2 files changed, 1 insertion(+), 8 deletions(-) > > diff --git a/arch/x86/include/asm/intel_pmc_ipc.h b/arch/x86/include/asm/intel_pmc_ipc.h > index 3b2e8b461520..b4f804877651 100644 > --- a/arch/x86/include/asm/intel_pmc_ipc.h > +++ b/arch/x86/include/asm/intel_pmc_ipc.h > @@ -31,7 +31,6 @@ > > #if IS_ENABLED(CONFIG_INTEL_PMC_IPC) > > -int intel_pmc_ipc_simple_command(int cmd, int sub); > int intel_pmc_ipc_raw_cmd(u32 cmd, u32 sub, u8 *in, u32 inlen, > u32 *out, u32 outlen, u32 dptr, u32 sptr); > int intel_pmc_ipc_command(u32 cmd, u32 sub, u8 *in, u32 inlen, > @@ -43,11 +42,6 @@ int intel_pmc_gcr_write(u32 offset, u32 data); > > #else > > -static inline int intel_pmc_ipc_simple_command(int cmd, int sub) > -{ > - return -EINVAL; > -} > - > static inline int intel_pmc_ipc_raw_cmd(u32 cmd, u32 sub, u8 *in, u32 inlen, > u32 *out, u32 outlen, u32 dptr, u32 sptr) > { > diff --git a/drivers/platform/x86/intel_pmc_ipc.c b/drivers/platform/x86/intel_pmc_ipc.c > index 9229c7a16536..53551f5474a7 100644 > --- a/drivers/platform/x86/intel_pmc_ipc.c > +++ b/drivers/platform/x86/intel_pmc_ipc.c > @@ -404,7 +404,7 @@ static int intel_pmc_ipc_check_status(void) > * > * Return: an IPC error code or 0 on success. > */ > -int intel_pmc_ipc_simple_command(int cmd, int sub) > +static int intel_pmc_ipc_simple_command(int cmd, int sub) > { > int ret; > > @@ -419,7 +419,6 @@ int intel_pmc_ipc_simple_command(int cmd, int sub) > > return ret; > } > -EXPORT_SYMBOL_GPL(intel_pmc_ipc_simple_command); > > /** > * intel_pmc_ipc_raw_cmd() - IPC command with data and pointers > -- > 2.24.1 > -- With Best Regards, Andy Shevchenko