Skip to content

Commit

Permalink
[PATCH] sis190: add endian annotations.
Browse files Browse the repository at this point in the history
Add endian annotations.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Francois Romieu <romieu@fr.zoreil.com>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
  • Loading branch information
Francois Romieu authored and Jeff Garzik committed Jul 30, 2005
1 parent bcad5e5 commit 3cec93c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions drivers/net/sis190.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,17 +191,17 @@ enum sis190_register_content {
};

struct TxDesc {
u32 PSize;
u32 status;
u32 addr;
u32 size;
__le32 PSize;
__le32 status;
__le32 addr;
__le32 size;
};

struct RxDesc {
u32 PSize;
u32 status;
u32 addr;
u32 size;
__le32 PSize;
__le32 status;
__le32 addr;
__le32 size;
};

enum _DescStatusBit {
Expand Down Expand Up @@ -1322,7 +1322,7 @@ static int __devinit sis190_get_mac_addr_from_eeprom(struct pci_dev *pdev,

/* Get MAC address from EEPROM */
for (i = 0; i < MAC_ADDR_LEN / 2; i++) {
u16 w = sis190_read_eeprom(ioaddr, EEPROMMACAddr + i);
__le16 w = sis190_read_eeprom(ioaddr, EEPROMMACAddr + i);

((u16 *)dev->dev_addr)[0] = le16_to_cpu(w);
}
Expand Down

0 comments on commit 3cec93c

Please sign in to comment.