aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/micrel/ks8851_mll.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <krzk@kernel.org>2018-07-17 18:05:39 +0200
committerHerbert Xu <herbert@gondor.apana.org.au>2018-07-27 19:16:37 +0800
commit5d258b48efbd0e28d9d0b5dc31de21050608e351 (patch)
tree3a1db84a2396477b7e07c0c598b0edeafd56e3a4 /drivers/net/ethernet/micrel/ks8851_mll.c
parentcrypto: stm32_crc32 - Use existing define with polynomial (diff)
downloadlinux-dev-5d258b48efbd0e28d9d0b5dc31de21050608e351.tar.xz
linux-dev-5d258b48efbd0e28d9d0b5dc31de21050608e351.zip
net: ethernet: Use existing define with polynomial
Do not define again the polynomial but use header with existing define. Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '')
-rw-r--r--drivers/net/ethernet/micrel/ks8851_mll.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/ethernet/micrel/ks8851_mll.c b/drivers/net/ethernet/micrel/ks8851_mll.c
index f3e9dd47b56f..0e9719fbc624 100644
--- a/drivers/net/ethernet/micrel/ks8851_mll.c
+++ b/drivers/net/ethernet/micrel/ks8851_mll.c
@@ -30,6 +30,7 @@
#include <linux/ethtool.h>
#include <linux/cache.h>
#include <linux/crc32.h>
+#include <linux/crc32poly.h>
#include <linux/mii.h>
#include <linux/platform_device.h>
#include <linux/delay.h>
@@ -1078,7 +1079,7 @@ static void ks_stop_rx(struct ks_net *ks)
} /* ks_stop_rx */
-static unsigned long const ethernet_polynomial = 0x04c11db7U;
+static unsigned long const ethernet_polynomial = CRC32_POLY_BE;
static unsigned long ether_gen_crc(int length, u8 *data)
{