mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
93e1821c80
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>
11 lines
246 B
Makefile
11 lines
246 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
# 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/
|