kraxel / rpms / kernel

Forked from rpms/kernel 2 years ago
Clone
c3110e3
From d8a29c727d073b674adcf7ca122c3e5d04ba54ff Mon Sep 17 00:00:00 2001
c3110e3
From: Laura Abbott <labbott@redhat.com>
c3110e3
Date: Wed, 2 Jan 2019 08:13:21 -0800
c3110e3
Subject: [PATCH] Drop that def_bool
c3110e3
c3110e3
I don't know why
c3110e3
c3110e3
BUILDSTDERR: In file included from drivers/vfio/pci/trace.h:102,
c3110e3
BUILDSTDERR:                  from drivers/vfio/pci/vfio_pci_nvlink2.c:29:
c3110e3
BUILDSTDERR: ./include/trace/define_trace.h:89:42: fatal error: ./trace.h: No such file or directory
c3110e3
BUILDSTDERR:  #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
c3110e3
BUILDSTDERR:                                           ^
c3110e3
BUILDSTDERR: compilation terminated.
c3110e3
BUILDSTDERR: make[3]: *** [scripts/Makefile.build:277: drivers/vfio/pci/vfio_pci_nvlink2.o] Error 1
c3110e3
BUILDSTDERR: make[2]: *** [scripts/Makefile.build:492: drivers/vfio/pci] Error 2
c3110e3
BUILDSTDERR: make[1]: *** [scripts/Makefile.build:492: drivers/vfio] Error 2
c3110e3
BUILDSTDERR: make: *** [Makefile:1053: drivers] Error 2
c3110e3
BUILDSTDERR: make: *** Waiting for unfinished jobs....
c3110e3
c3110e3
Signed-off-by: Laura Abbott <labbott@redhat.com>
c3110e3
---
c3110e3
 drivers/vfio/pci/Kconfig | 2 +-
c3110e3
 1 file changed, 1 insertion(+), 1 deletion(-)
c3110e3
c3110e3
diff --git a/drivers/vfio/pci/Kconfig b/drivers/vfio/pci/Kconfig
c3110e3
index d0f8e4f5a039..11efd2099797 100644
c3110e3
--- a/drivers/vfio/pci/Kconfig
c3110e3
+++ b/drivers/vfio/pci/Kconfig
c3110e3
@@ -40,7 +40,7 @@ config VFIO_PCI_IGD
c3110e3
 	  To enable Intel IGD assignment through vfio-pci, say Y.
c3110e3
 
c3110e3
 config VFIO_PCI_NVLINK2
c3110e3
-	def_bool y
c3110e3
+	bool y
c3110e3
 	depends on VFIO_PCI && PPC_POWERNV
c3110e3
 	help
c3110e3
 	  VFIO PCI support for P9 Witherspoon machine with NVIDIA V100 GPUs
c3110e3
-- 
c3110e3
2.20.1
c3110e3