1 diff --git a/lib/eeprom/ethtool-util.h b/lib/eeprom/ethtool-util.h
2 index 3fe47e3..e7b4cd0 100644
3 --- a/lib/eeprom/ethtool-util.h
4 +++ b/lib/eeprom/ethtool-util.h
7 /* hack, so we may include kernel's ethtool.h */
8 typedef unsigned long long __u64;
9 -typedef __uint32_t __u32; /* ditto */
10 -typedef __uint16_t __u16; /* ditto */
11 -typedef __uint8_t __u8; /* ditto */
12 +typedef uint32_t __u32; /* ditto */
13 +typedef uint16_t __u16; /* ditto */
14 +typedef uint8_t __u8; /* ditto */
16 /* historical: we used to use kernel-like types; remove these once cleaned */
17 typedef unsigned long long u64;
18 -typedef __uint32_t u32; /* ditto */
19 -typedef __uint16_t u16; /* ditto */
20 -typedef __uint8_t u8; /* ditto */
21 +typedef uint32_t u32; /* ditto */
22 +typedef uint16_t u16; /* ditto */
23 +typedef uint8_t u8; /* ditto */