net: smsc95xx: Use correct get_unaligned functions
The __get_unaligned_le* functions may not be declared on all platforms. Instead, get_unaligned_le* should be used. On many platforms both of these are the same function. Signed-off-by: Chris Packham <judge.packham@gmail.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
a212b66d7c
commit
70f1463686
@ -391,8 +391,8 @@ static int smsc95xx_write_hwaddr_common(struct usb_device *udev,
|
||||
struct smsc95xx_private *priv,
|
||||
unsigned char *enetaddr)
|
||||
{
|
||||
u32 addr_lo = __get_unaligned_le32(&enetaddr[0]);
|
||||
u32 addr_hi = __get_unaligned_le16(&enetaddr[4]);
|
||||
u32 addr_lo = get_unaligned_le32(&enetaddr[0]);
|
||||
u32 addr_hi = get_unaligned_le16(&enetaddr[4]);
|
||||
int ret;
|
||||
|
||||
/* set hardware address */
|
||||
|
Loading…
Reference in New Issue
Block a user