diff options
| author | Jason Yan <yanaijie@huawei.com> | 2020-04-08 10:42:00 +0800 | 
|---|---|---|
| committer | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2020-04-17 16:48:06 +0300 | 
| commit | f585c9d5436a2dbedcd6c581bcabd41d7e372e21 (patch) | |
| tree | a559d55244f13c611122534eeac577e1f62a4b28 /drivers/platform/x86/intel-uncore-frequency.c | |
| parent | 713df99a9ef0133c09ad05bac10cf7d0163cd272 (diff) | |
platform/x86/intel-uncore-freq: make uncore_root_kobj static
Fix the following sparse warning:
drivers/platform/x86/intel-uncore-frequency.c:56:16: warning: symbol
'uncore_root_kobj' was not declared. Should it be static?
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Jason Yan <yanaijie@huawei.com>
Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'drivers/platform/x86/intel-uncore-frequency.c')
| -rw-r--r-- | drivers/platform/x86/intel-uncore-frequency.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/intel-uncore-frequency.c b/drivers/platform/x86/intel-uncore-frequency.c index b96d172eb2c1..12d5ab7e1f5d 100644 --- a/drivers/platform/x86/intel-uncore-frequency.c +++ b/drivers/platform/x86/intel-uncore-frequency.c @@ -53,7 +53,7 @@ static int uncore_max_entries __read_mostly;  /* Storage for uncore data for all instances */  static struct uncore_data *uncore_instances;  /* Root of the all uncore sysfs kobjs */ -struct kobject *uncore_root_kobj; +static struct kobject *uncore_root_kobj;  /* Stores the CPU mask of the target CPUs to use during uncore read/write */  static cpumask_t uncore_cpu_mask;  /* CPU online callback register instance */  | 
