diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2013-02-06 07:06:41 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-06 14:23:47 -0500 |
commit | 827eef51f8dd9a4ab62b4ad270c15472f46938f2 (patch) | |
tree | 15798db67af269512bdb4ae54f36e0a26d178d4a /drivers/misc/mei/Makefile | |
parent | 52c34561415b420301f1580413a9d1891d079494 (diff) |
mei: separate compilation of the ME hardware specifics
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>
Diffstat (limited to 'drivers/misc/mei/Makefile')
-rw-r--r-- | drivers/misc/mei/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/misc/mei/Makefile b/drivers/misc/mei/Makefile index 068f55354811..040af6c7b147 100644 --- a/drivers/misc/mei/Makefile +++ b/drivers/misc/mei/Makefile | |||
@@ -6,9 +6,9 @@ obj-$(CONFIG_INTEL_MEI) += mei.o | |||
6 | mei-objs := init.o | 6 | mei-objs := init.o |
7 | mei-objs += hbm.o | 7 | mei-objs += hbm.o |
8 | mei-objs += interrupt.o | 8 | mei-objs += interrupt.o |
9 | mei-objs += hw-me.o | 9 | mei-objs += client.o |
10 | mei-objs += main.o | 10 | mei-objs += main.o |
11 | mei-objs += amthif.o | 11 | mei-objs += amthif.o |
12 | mei-objs += wd.o | 12 | mei-objs += wd.o |
13 | mei-objs += client.o | 13 | mei-$(CONFIG_INTEL_MEI_ME) += pci-me.o |
14 | mei-objs += pci-me.o | 14 | mei-$(CONFIG_INTEL_MEI_ME) += hw-me.o |