Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1639345 > unrolled thread

[PATCH] misc: pci_endpoint_test: select CONFIG_CRC32

Started byArnd Bergmann <arnd@arndb.de>
First post2017-05-11 14:20 +0200
Last post2017-05-11 14:20 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] misc: pci_endpoint_test: select CONFIG_CRC32 Arnd Bergmann <arnd@arndb.de> - 2017-05-11 14:20 +0200

#1639345 — [PATCH] misc: pci_endpoint_test: select CONFIG_CRC32

FromArnd Bergmann <arnd@arndb.de>
Date2017-05-11 14:20 +0200
Subject[PATCH] misc: pci_endpoint_test: select CONFIG_CRC32
Message-ID<tFVey-6c7-9@gated-at.bofh.it>
Without CRC32, we get this link error:

pci_endpoint_test.c:(.text+0x2509e): undefined reference to `crc32_le'

Fixes: 58c89c8aa0e8 ("misc: Add host side PCI driver for PCI test function device")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/misc/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig
index 2cba76e6fa3c..07bbd4cc1852 100644
--- a/drivers/misc/Kconfig
+++ b/drivers/misc/Kconfig
@@ -492,6 +492,7 @@ config ASPEED_LPC_CTRL
 
 config PCI_ENDPOINT_TEST
 	depends on PCI
+	select CRC32
 	tristate "PCI Endpoint Test driver"
 	---help---
            Enable this configuration option to enable the host side test driver
-- 
2.9.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web