22 lines
669 B
Diff
22 lines
669 B
Diff
From 9649df50a239d1379cc8d9febd4854a0c7ca0731 Mon Sep 17 00:00:00 2001
|
|
From: Mieczyslaw Nalewaj <namiltd@poczta.onet.pl>
|
|
Date: Sat, 10 Aug 2024 17:42:44 +0200
|
|
Subject: [PATCH] r8126.h: use BIT_ULL
|
|
|
|
Fixes compilation on 32 bit systems.
|
|
---
|
|
src/r8126.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/src/r8126.h
|
|
+++ b/src/r8126.h
|
|
@@ -678,7 +678,7 @@ This is free software, and you are welco
|
|
#ifndef ADVERTISED_2500baseX_Full
|
|
#define ADVERTISED_2500baseX_Full 0x8000
|
|
#endif
|
|
-#define RTK_ADVERTISED_5000baseX_Full BIT(48)
|
|
+#define RTK_ADVERTISED_5000baseX_Full BIT_ULL(48)
|
|
|
|
#define RTK_ADVERTISE_2500FULL 0x80
|
|
#define RTK_ADVERTISE_5000FULL 0x100
|