diff options
| author | Vegard Nossum <vegard.nossum@oracle.com> | 2021-10-12 17:25:09 +0200 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-10-20 11:23:03 +0200 |
| commit | 843280d81ff9c2a7eb32559d7cb05fecc45822f9 (patch) | |
| tree | 4e40ad2f8bb83e1ef58944a0ad8a4766843b06e4 /drivers | |
| parent | cdcfccfca82eafca3ef9039b4aaf46611c173d52 (diff) | |
| download | linux-843280d81ff9c2a7eb32559d7cb05fecc45822f9.tar.gz linux-843280d81ff9c2a7eb32559d7cb05fecc45822f9.tar.bz2 linux-843280d81ff9c2a7eb32559d7cb05fecc45822f9.zip | |
net: korina: select CRC32
commit 427f974d9727ca681085ddcd0530c97ab5811ae0 upstream.
Fix the following build/link error by adding a dependency on the CRC32
routines:
ld: drivers/net/ethernet/korina.o: in function `korina_multicast_list':
korina.c:(.text+0x1af): undefined reference to `crc32_le'
Fixes: ef11291bcd5f9 ("Add support the Korina (IDT RC32434) Ethernet MAC")
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Vegard Nossum <vegard.nossum@oracle.com>
Acked-by: Florian fainelli <f.fainelli@gmail.com>
Link: https://lore.kernel.org/r/20211012152509.21771-1-vegard.nossum@oracle.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/net/ethernet/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/Kconfig b/drivers/net/ethernet/Kconfig index 6fde68aa13a4..02644283377a 100644 --- a/drivers/net/ethernet/Kconfig +++ b/drivers/net/ethernet/Kconfig @@ -98,6 +98,7 @@ config JME config KORINA tristate "Korina (IDT RC32434) Ethernet support" depends on MIKROTIK_RB532 + select CRC32 ---help--- If you have a Mikrotik RouterBoard 500 or IDT RC32434 based system say Y. Otherwise say N. |
