All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 5/7] drivers: s390: Avoids building drivers if ARCH is not s390.
@ 2018-09-26  1:52 Leonardo Brás
  0 siblings, 0 replies; only message in thread
From: Leonardo Brás @ 2018-09-26  1:52 UTC (permalink / raw)
  To: lkcamp
  Cc: Alexander Shishkin, Finn Thain, Robert Richter,
	James E.J. Bottomley, Helge Deller, Martin Schwidefsky,
	Heiko Carstens, Geert Uytterhoeven, linux-kernel, linux-m68k,
	oprofile-list, linux-parisc, linux-s390

Avoids building s390 drivers if 'make drivers/s390/' is called but
ARCH is not s390.

Signed-off-by: Leonardo Brás <leobras.c@gmail.com>
---
 drivers/s390/Makefile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/s390/Makefile b/drivers/s390/Makefile
index a863b0462b43..0575f02dba45 100644
--- a/drivers/s390/Makefile
+++ b/drivers/s390/Makefile
@@ -3,7 +3,7 @@
 # Makefile for the S/390 specific device drivers
 #
 
-obj-y += cio/ block/ char/ crypto/ net/ scsi/ virtio/
-
-drivers-y += drivers/s390/built-in.a
-
+ifeq ($(ARCH),s390)
+	obj-y += cio/ block/ char/ crypto/ net/ scsi/ virtio/
+	drivers-y += drivers/s390/built-in.a
+endif
-- 
2.19.0

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2018-09-26  1:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-26  1:52 [PATCH 5/7] drivers: s390: Avoids building drivers if ARCH is not s390 Leonardo Brás

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.