summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/ethtool/ethtool/0001-marvell.c-define-_GNU_SOURCE.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2023-01-13 15:56:54 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-15 08:49:08 +0000
commit820aafd6746b05c5dd346dd70dd2f173e77b3e40 (patch)
treeea24b0739c77ae3fd5bbe0aa26a132b0a658dea5 /meta/recipes-extended/ethtool/ethtool/0001-marvell.c-define-_GNU_SOURCE.patch
parentcfe1272230b91cc35b80c71f9f5aff48a2f7585e (diff)
downloadpoky-820aafd6746b05c5dd346dd70dd2f173e77b3e40.tar.gz
ethtool: upgrade 6.0 -> 6.1
(From OE-Core rev: f0090883eb66a636f9737cb1a09eee5dbea27883) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/ethtool/ethtool/0001-marvell.c-define-_GNU_SOURCE.patch')
-rw-r--r--meta/recipes-extended/ethtool/ethtool/0001-marvell.c-define-_GNU_SOURCE.patch59
1 files changed, 59 insertions, 0 deletions
diff --git a/meta/recipes-extended/ethtool/ethtool/0001-marvell.c-define-_GNU_SOURCE.patch b/meta/recipes-extended/ethtool/ethtool/0001-marvell.c-define-_GNU_SOURCE.patch
new file mode 100644
index 0000000000..8a7eeafb9c
--- /dev/null
+++ b/meta/recipes-extended/ethtool/ethtool/0001-marvell.c-define-_GNU_SOURCE.patch
@@ -0,0 +1,59 @@
1From 5112785191e3279c671a027fe797be77e1071ecd Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex@linutronix.de>
3Date: Mon, 2 Jan 2023 13:45:46 +0100
4Subject: [PATCH] marvell.c: use portable integer types
5
6u_int32_t is not portable, but uint32_t is.
7
8Upstream-Status: Submitted [by email to mkubecek@suse.cz]
9Signed-off-by: Alexander Kanavin <alex@linutronix.de>
10
11---
12 marvell.c | 34 +++++++++++++++++-----------------
13 1 file changed, 17 insertions(+), 17 deletions(-)
14
15diff --git a/marvell.c b/marvell.c
16index d3d570e..3d42eed 100644
17--- a/marvell.c
18+++ b/marvell.c
19@@ -31,23 +31,23 @@ static void dump_timer(const char *name, const void *p)
20 static void dump_queue(const char *name, const void *a, int rx)
21 {
22 struct desc {
23- u_int32_t ctl;
24- u_int32_t next;
25- u_int32_t data_lo;
26- u_int32_t data_hi;
27- u_int32_t status;
28- u_int32_t timestamp;
29- u_int16_t csum2;
30- u_int16_t csum1;
31- u_int16_t csum2_start;
32- u_int16_t csum1_start;
33- u_int32_t addr_lo;
34- u_int32_t addr_hi;
35- u_int32_t count_lo;
36- u_int32_t count_hi;
37- u_int32_t byte_count;
38- u_int32_t csr;
39- u_int32_t flag;
40+ uint32_t ctl;
41+ uint32_t next;
42+ uint32_t data_lo;
43+ uint32_t data_hi;
44+ uint32_t status;
45+ uint32_t timestamp;
46+ uint16_t csum2;
47+ uint16_t csum1;
48+ uint16_t csum2_start;
49+ uint16_t csum1_start;
50+ uint32_t addr_lo;
51+ uint32_t addr_hi;
52+ uint32_t count_lo;
53+ uint32_t count_hi;
54+ uint32_t byte_count;
55+ uint32_t csr;
56+ uint32_t flag;
57 };
58 const struct desc *d = a;
59