Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: greybus: makefile: fix dependency of spi to spilib

Greybus SPI driver depends on gb-spilib and we need to state that at
makefile to make it link correctly.

Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>

authored by

Rui Miguel Silva and committed by
Greg Kroah-Hartman
b04f56c6 722a133a

+1 -1
+1 -1
drivers/staging/greybus/Makefile
··· 85 85 obj-$(CONFIG_GREYBUS_I2C) += gb-i2c.o 86 86 obj-$(CONFIG_GREYBUS_PWM) += gb-pwm.o 87 87 obj-$(CONFIG_GREYBUS_SDIO) += gb-sdio.o 88 - obj-$(CONFIG_GREYBUS_SPI) += gb-spi.o 88 + obj-$(CONFIG_GREYBUS_SPI) += gb-spi.o gb-spilib.o 89 89 obj-$(CONFIG_GREYBUS_UART) += gb-uart.o 90 90 obj-$(CONFIG_GREYBUS_USB) += gb-usb.o 91 91