From 4344f0d4456d0cd81f581dda5707dec9bc082fa8 Mon Sep 17 00:00:00 2001 From: Lazarus Motha Date: Tue, 20 Sep 2022 18:00:00 -0700 Subject: [PATCH] bus: mhi: Add MHI devices and controllers stack in makefile Enable MHI devices and controllers stack as they are now present in the host directory. Change-Id: I23d8f69150020921ac1dcf9e1463c079cc3ab309 Signed-off-by: Lazarus Motha --- drivers/bus/mhi/Kconfig | 2 ++ drivers/bus/mhi/Makefile | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/drivers/bus/mhi/Kconfig b/drivers/bus/mhi/Kconfig index b39a11e6c624..b13f94386796 100644 --- a/drivers/bus/mhi/Kconfig +++ b/drivers/bus/mhi/Kconfig @@ -7,3 +7,5 @@ source "drivers/bus/mhi/host/Kconfig" source "drivers/bus/mhi/ep/Kconfig" +source "drivers/bus/mhi/devices/Kconfig" +source "drivers/bus/mhi/controllers/Kconfig" diff --git a/drivers/bus/mhi/Makefile b/drivers/bus/mhi/Makefile index 46981331b38f..ac6f0fa5662f 100644 --- a/drivers/bus/mhi/Makefile +++ b/drivers/bus/mhi/Makefile @@ -3,3 +3,9 @@ obj-y += host/ # Endpoint MHI stack obj-y += ep/ + +# MHI Devices stack +obj-y += devices/ + +#MHI Controller stack +obj-y += controllers/