mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-13 01:26:43 +07:00
827eef51f8
We add struct mei_hw_ops to virtualize access to hw specific configurations. This allows us to separate the compilation of the ME interface from the ME hardware specifics Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15 lines
371 B
Makefile
15 lines
371 B
Makefile
#
|
|
# Makefile - Intel Management Engine Interface (Intel MEI) Linux driver
|
|
# Copyright (c) 2010-2011, Intel Corporation.
|
|
#
|
|
obj-$(CONFIG_INTEL_MEI) += mei.o
|
|
mei-objs := init.o
|
|
mei-objs += hbm.o
|
|
mei-objs += interrupt.o
|
|
mei-objs += client.o
|
|
mei-objs += main.o
|
|
mei-objs += amthif.o
|
|
mei-objs += wd.o
|
|
mei-$(CONFIG_INTEL_MEI_ME) += pci-me.o
|
|
mei-$(CONFIG_INTEL_MEI_ME) += hw-me.o
|