mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 10:13:57 +08:00
[PATCH] sis190: add endian annotations.
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>
This commit is contained in:
parent
bcad5e5378
commit
3cec93c712
@ -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 {
|
||||
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user