diff options
author | Mika Westerberg <mika.westerberg@linux.intel.com> | 2019-01-09 16:42:12 +0200 |
---|---|---|
committer | Mika Westerberg <mika.westerberg@linux.intel.com> | 2019-04-18 11:18:51 +0300 |
commit | a9be55824a10653d0247de12dc6b9a741ce3fc98 (patch) | |
tree | a2d8b835041d68b65e0222331d36021d8ed55727 /drivers/thunderbolt/Makefile | |
parent | ffd003b2f8cba8dde0f7259e2207d63f75691096 (diff) | |
download | linux-a9be55824a10653d0247de12dc6b9a741ce3fc98.tar.gz linux-a9be55824a10653d0247de12dc6b9a741ce3fc98.tar.bz2 linux-a9be55824a10653d0247de12dc6b9a741ce3fc98.zip |
thunderbolt: Move LC specific functionality into a separate file
We will be adding more link controller functionality in subsequent
patches and it does not make sense to keep all that in switch.c, so
separate LC functionality into its own file.
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Diffstat (limited to 'drivers/thunderbolt/Makefile')
-rw-r--r-- | drivers/thunderbolt/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thunderbolt/Makefile b/drivers/thunderbolt/Makefile index f2f0de27252b..8531f15d3b3c 100644 --- a/drivers/thunderbolt/Makefile +++ b/drivers/thunderbolt/Makefile @@ -1,3 +1,3 @@ obj-${CONFIG_THUNDERBOLT} := thunderbolt.o thunderbolt-objs := nhi.o ctl.o tb.o switch.o cap.o path.o tunnel_pci.o eeprom.o -thunderbolt-objs += domain.o dma_port.o icm.o property.o xdomain.o +thunderbolt-objs += domain.o dma_port.o icm.o property.o xdomain.o lc.o |