From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leonardo =?utf-8?B?QnLDoXM=?= Subject: [PATCH 1/7] drivers: dio: Avoids building driver if CONFIG_DIO is disabled Date: Tue, 25 Sep 2018 22:52:04 -0300 Message-ID: <20180926015204.GA14952@WindFlash> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Return-path: List-Archive: List-Post: To: lkcamp@lists.libreplanetbr.org Cc: Alexander Shishkin , Finn Thain , Robert Richter , "James E.J. Bottomley" , Helge Deller , Martin Schwidefsky , Heiko Carstens , Geert Uytterhoeven , linux-kernel@vger.kernel.org, linux-m68k@lists.linux-m68k.org, oprofile-list@lists.sf.net, linux-parisc@vger.kernel.org, linux-s390@vger.kernel.org List-ID: Content-Transfer-Encoding: 8bit Avoids building driver if 'make drivers/dio/' is called and CONFIG_DIO is disabled. Signed-off-by: Leonardo BrĂ¡s --- drivers/dio/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dio/Makefile b/drivers/dio/Makefile index ae92d17083f2..f5cffe232448 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 \ No newline at end of file -- 2.19.0