Commit b8c48be2 authored by Ido Schimmel's avatar Ido Schimmel Committed by David S. Miller
Browse files

ethtool: Use kernel data types for internal EEPROM struct



The struct is not visible to user space and therefore should not use the
user visible data types.

Instead, use internal data types like other structures in the file.

Signed-off-by: default avatarIdo Schimmel <idosch@nvidia.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 37a025e8
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -401,12 +401,12 @@ struct ethtool_rmon_stats {
 * required information to the driver.
 */
struct ethtool_module_eeprom {
	__u32	offset;
	__u32	length;
	__u8	page;
	__u8	bank;
	__u8	i2c_address;
	__u8	*data;
	u32	offset;
	u32	length;
	u8	page;
	u8	bank;
	u8	i2c_address;
	u8	*data;
};

/**