.. | .. |
---|
1 | 1 | # SPDX-License-Identifier: GPL-2.0 |
---|
2 | 2 | # |
---|
| 3 | +# Copyright (c) 2010-2019, Intel Corporation. All rights reserved. |
---|
3 | 4 | # Makefile - Intel Management Engine Interface (Intel MEI) Linux driver |
---|
4 | | -# Copyright (c) 2010-2014, Intel Corporation. |
---|
5 | 5 | # |
---|
6 | 6 | obj-$(CONFIG_INTEL_MEI) += mei.o |
---|
7 | 7 | mei-objs := init.o |
---|
.. | .. |
---|
9 | 9 | mei-objs += interrupt.o |
---|
10 | 10 | mei-objs += client.o |
---|
11 | 11 | mei-objs += main.o |
---|
| 12 | +mei-objs += dma-ring.o |
---|
12 | 13 | mei-objs += bus.o |
---|
13 | 14 | mei-objs += bus-fixup.o |
---|
14 | 15 | mei-$(CONFIG_DEBUG_FS) += debugfs.o |
---|
.. | .. |
---|
23 | 24 | |
---|
24 | 25 | mei-$(CONFIG_EVENT_TRACING) += mei-trace.o |
---|
25 | 26 | CFLAGS_mei-trace.o = -I$(src) |
---|
| 27 | + |
---|
| 28 | +obj-$(CONFIG_INTEL_MEI_HDCP) += hdcp/ |
---|