diff mbox series

[v3,1/7] drivers: dio: Avoids building driver if CONFIG_DIO is disabled

Message ID 20180928014628.GA10427@WindFlash (mailing list archive)
State Not Applicable
Headers show
Series Remove errors building drivers/DRIVERNAME | expand

Commit Message

Leonardo Bras Sept. 28, 2018, 1:46 a.m. UTC
Avoids building driver if 'make drivers/dio/' is called and
CONFIG_DIO is disabled.

Signed-off-by: Leonardo BrĂ¡s <leobras.c@gmail.com>
---
 drivers/dio/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/dio/Makefile b/drivers/dio/Makefile
index ae92d17083f2..8fc80e805b90 100644
--- a/drivers/dio/Makefile
+++ b/drivers/dio/Makefile
@@ -2,4 +2,4 @@ 
 # Makefile for the linux kernel.
 #
 
-obj-y := dio.o dio-driver.o dio-sysfs.o
+obj-$(CONFIG_DIO) := dio.o dio-driver.o dio-sysfs.o