mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
b81beec9cb
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>
26 lines
409 B
Makefile
26 lines
409 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Greybus core
|
|
greybus-y := core.o \
|
|
debugfs.o \
|
|
hd.o \
|
|
manifest.o \
|
|
module.o \
|
|
interface.o \
|
|
bundle.o \
|
|
connection.o \
|
|
control.o \
|
|
svc.o \
|
|
svc_watchdog.o \
|
|
operation.o
|
|
|
|
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
|
|
|
|
|