platform/x86: intel_pmc_ipc: Make intel_pmc_ipc_simple_command() static
This function is not called outside of intel_pmc_ipc.c so we can make it static instead. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
parent
e1f4616311
commit
3f751ba584
@ -31,7 +31,6 @@
|
|||||||
|
|
||||||
#if IS_ENABLED(CONFIG_INTEL_PMC_IPC)
|
#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,
|
int intel_pmc_ipc_raw_cmd(u32 cmd, u32 sub, u8 *in, u32 inlen,
|
||||||
u32 *out, u32 outlen, u32 dptr, u32 sptr);
|
u32 *out, u32 outlen, u32 dptr, u32 sptr);
|
||||||
int intel_pmc_ipc_command(u32 cmd, u32 sub, u8 *in, u32 inlen,
|
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
|
#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,
|
static inline int intel_pmc_ipc_raw_cmd(u32 cmd, u32 sub, u8 *in, u32 inlen,
|
||||||
u32 *out, u32 outlen, u32 dptr, u32 sptr)
|
u32 *out, u32 outlen, u32 dptr, u32 sptr)
|
||||||
{
|
{
|
||||||
|
@ -404,7 +404,7 @@ static int intel_pmc_ipc_check_status(void)
|
|||||||
*
|
*
|
||||||
* Return: an IPC error code or 0 on success.
|
* 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;
|
int ret;
|
||||||
|
|
||||||
@ -419,7 +419,6 @@ int intel_pmc_ipc_simple_command(int cmd, int sub)
|
|||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(intel_pmc_ipc_simple_command);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* intel_pmc_ipc_raw_cmd() - IPC command with data and pointers
|
* intel_pmc_ipc_raw_cmd() - IPC command with data and pointers
|
||||||
|
Loading…
Reference in New Issue
Block a user