diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-08-25 07:54:29 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-08-27 19:03:08 +0200 |
commit | b81beec9cb2d586412c7166c893894930f19965e (patch) | |
tree | b2ffbe567bc901e3daec4a50161f78e0cbc2d652 /drivers/greybus/Makefile | |
parent | staging: greybus: move the greybus core to drivers/greybus (diff) | |
download | linux-b81beec9cb2d586412c7166c893894930f19965e.tar.xz linux-b81beec9cb2d586412c7166c893894930f19965e.zip |
staging: greybus: move es2 to drivers/greybus/
The es2 Greybus host controller has long been stable, so move it out of
drivers/staging/ to drivers/greybus/
Cc: Johan Hovold <johan@kernel.org>
Cc: greybus-dev@lists.linaro.org
Cc: linux-kernel@vger.kernel.org
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Alex Elder <elder@kernel.org>
Link: https://lore.kernel.org/r/20190825055429.18547-10-gregkh@linuxfoundation.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/greybus/Makefile')
-rw-r--r-- | drivers/greybus/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/greybus/Makefile b/drivers/greybus/Makefile index 03b22616ec7d..9bccdd229aa2 100644 --- a/drivers/greybus/Makefile +++ b/drivers/greybus/Makefile @@ -17,3 +17,10 @@ obj-$(CONFIG_GREYBUS) += greybus.o # needed for trace events ccflags-y += -I$(src) + +# Greybus Host controller drivers +gb-es2-y := es2.o + +obj-$(CONFIG_GREYBUS_ES2) += gb-es2.o + + |