Skip to content

Commit

Permalink
EDAC, skx_edac: Fix non static symbol warnings
Browse files Browse the repository at this point in the history
Fix the following sparse warnings:

  drivers/edac/skx_edac.c:266:25: warning:
   symbol 'skx_cpuids' was not declared. Should it be static?
  drivers/edac/skx_edac.c:1040:12: warning:
   symbol 'skx_init' was not declared. Should it be static?

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Cc: Tony Luck <tony.luck@intel.com>
Cc: linux-edac <linux-edac@vger.kernel.org>
Link: http://lkml.kernel.org/r/1477147098-2842-1-git-send-email-weiyj.lk@gmail.com
Signed-off-by: Borislav Petkov <bp@suse.de>
  • Loading branch information
Wei Yongjun authored and Borislav Petkov committed Oct 22, 2016
1 parent 9a9260c commit 240ea92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/edac/skx_edac.c
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ static int get_all_munits(const struct munit *m)
return -ENODEV;
}

const struct x86_cpu_id skx_cpuids[] = {
static const struct x86_cpu_id skx_cpuids[] = {
{ X86_VENDOR_INTEL, 6, INTEL_FAM6_SKYLAKE_X, 0, 0 },
{ }
};
Expand Down Expand Up @@ -1037,7 +1037,7 @@ static void skx_remove(void)
* search for all the devices we need
* check which DIMMs are present.
*/
int __init skx_init(void)
static int __init skx_init(void)
{
const struct x86_cpu_id *id;
const struct munit *m;
Expand Down

0 comments on commit 240ea92

Please sign in to comment.