diff options
author | Iwona Winiarska <iwona.winiarska@intel.com> | 2022-02-08 18:36:35 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-02-09 10:04:44 +0300 |
commit | 93e1821c80f9460c8931dc4bc090ede794f966cd (patch) | |
tree | c0f41cd8c67095e66f102cd509e98b6b677b2e3e /drivers/peci/Makefile | |
parent | 6b8145b054b27319dddaad4abbb5184e343375da (diff) | |
download | linux-93e1821c80f9460c8931dc4bc090ede794f966cd.tar.xz |
peci: Add peci-cpu driver
PECI is an interface that may be used by different types of devices.
Add a peci-cpu driver compatible with Intel processors. The driver is
responsible for handling auxiliary devices that can subsequently be used
by other drivers (e.g. hwmons).
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Acked-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Iwona Winiarska <iwona.winiarska@intel.com>
Link: https://lore.kernel.org/r/20220208153639.255278-10-iwona.winiarska@intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/peci/Makefile')
-rw-r--r-- | drivers/peci/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/peci/Makefile b/drivers/peci/Makefile index 917f689e147a..7de18137e738 100644 --- a/drivers/peci/Makefile +++ b/drivers/peci/Makefile @@ -3,6 +3,8 @@ # Core functionality peci-y := core.o request.o device.o sysfs.o obj-$(CONFIG_PECI) += peci.o +peci-cpu-y := cpu.o +obj-$(CONFIG_PECI_CPU) += peci-cpu.o # Hardware specific bus drivers obj-y += controller/ |