diff options
author | Iwona Winiarska <iwona.winiarska@intel.com> | 2022-02-08 18:36:32 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-02-09 10:04:44 +0300 |
commit | 52857e6828e260b16ac569578705f83cf2a71ac1 (patch) | |
tree | e468e1dbeef61906b3457d1d1d13af7690cdab6e /drivers/peci/Makefile | |
parent | a85e4c52086cd8da6399447a92bf0250d8e634c2 (diff) | |
download | linux-52857e6828e260b16ac569578705f83cf2a71ac1.tar.xz |
peci: Add device detection
Since PECI devices are discoverable, we can dynamically detect devices
that are actually available in the system.
This change complements the earlier implementation by rescanning PECI
bus to detect available devices. For this purpose, it also introduces the
minimal API for PECI requests.
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-7-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, 1 insertions, 1 deletions
diff --git a/drivers/peci/Makefile b/drivers/peci/Makefile index 926d8df15cbd..c5f9d3fe21bb 100644 --- a/drivers/peci/Makefile +++ b/drivers/peci/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0-only # Core functionality -peci-y := core.o +peci-y := core.o request.o device.o obj-$(CONFIG_PECI) += peci.o # Hardware specific bus drivers |