diff options
author | Huang Rui <ray.huang@amd.com> | 2016-04-06 15:44:10 +0800 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2016-04-19 06:32:34 -0700 |
commit | 3ba4e3841530b1565f761778bd0e14e242a4ab9a (patch) | |
tree | af42e2d58f07091a0d74e21f96a4dc02cb74c8de | |
parent | 04e1e70afec6bb2940aea0ac2e9cbaf7d643d5f4 (diff) | |
download | linux-3ba4e3841530b1565f761778bd0e14e242a4ab9a.tar.gz linux-3ba4e3841530b1565f761778bd0e14e242a4ab9a.tar.bz2 linux-3ba4e3841530b1565f761778bd0e14e242a4ab9a.zip |
hwmon: (fam15h_power) Add CPU_SUP_AMD as the dependence
This patch adds CONFIG_CPU_SUP_AMD as the dependence of fam15h_power
driver. Because the following patch will use the interface from
x86/kernel/cpu/amd.c.
Otherwise, the below error might be encountered:
All errors (new ones prefixed by >>):
drivers/built-in.o: In function `fam15h_power_probe':
>> fam15h_power.c:(.text+0x26e3a3): undefined reference to
>> `amd_get_cores_per_cu'
fam15h_power.c:(.text+0x26e41e): undefined reference to
`amd_get_cores_per_cu'
Reported-by: build test robot <lkp@intel.com>
Acked-by: Borislav Petkov <bp@suse.de>
Signed-off-by: Huang Rui <ray.huang@amd.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
-rw-r--r-- | drivers/hwmon/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig index bdfa39408996..1b5b500ede07 100644 --- a/drivers/hwmon/Kconfig +++ b/drivers/hwmon/Kconfig @@ -288,7 +288,7 @@ config SENSORS_K10TEMP config SENSORS_FAM15H_POWER tristate "AMD Family 15h processor power" - depends on X86 && PCI + depends on X86 && PCI && CPU_SUP_AMD help If you say yes here you get support for processor power information of your AMD family 15h CPU. |