mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-15 01:44:52 +00:00
[PATCH] forcedeth: le32 annotation
Use __le32 to indicate byte order of hardware ring elements Signed-off-by: Stephen Hemminger <shemminger@osdl.org> drivers/net/forcedeth.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
f82a9352f6
commit
a8bed49ecf
@ -381,15 +381,15 @@ enum {
|
||||
|
||||
/* Big endian: should work, but is untested */
|
||||
struct ring_desc {
|
||||
u32 buf;
|
||||
u32 flaglen;
|
||||
__le32 buf;
|
||||
__le32 flaglen;
|
||||
};
|
||||
|
||||
struct ring_desc_ex {
|
||||
u32 bufhigh;
|
||||
u32 buflow;
|
||||
u32 txvlan;
|
||||
u32 flaglen;
|
||||
__le32 bufhigh;
|
||||
__le32 buflow;
|
||||
__le32 txvlan;
|
||||
__le32 flaglen;
|
||||
};
|
||||
|
||||
union ring_type {
|
||||
@ -653,8 +653,8 @@ static const struct nv_ethtool_str nv_etests_str[] = {
|
||||
};
|
||||
|
||||
struct register_test {
|
||||
u32 reg;
|
||||
u32 mask;
|
||||
__le32 reg;
|
||||
__le32 mask;
|
||||
};
|
||||
|
||||
static const struct register_test nv_registers_test[] = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user