mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
s390: Use eth_random_addr
Convert the existing uses of random_ether_addr to the new eth_random_addr. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
344dc8ede1
commit
1833611d4e
2 changed files with 2 additions and 2 deletions
|
@ -647,7 +647,7 @@ static int qeth_l2_request_initial_mac(struct qeth_card *card)
|
|||
}
|
||||
QETH_DBF_HEX(SETUP, 2, card->dev->dev_addr, OSA_ADDR_LEN);
|
||||
} else {
|
||||
random_ether_addr(card->dev->dev_addr);
|
||||
eth_random_addr(card->dev->dev_addr);
|
||||
memcpy(card->dev->dev_addr, vendor_pre, 3);
|
||||
}
|
||||
return 0;
|
||||
|
|
|
@ -1473,7 +1473,7 @@ static int qeth_l3_iqd_read_initial_mac_cb(struct qeth_card *card,
|
|||
memcpy(card->dev->dev_addr,
|
||||
cmd->data.create_destroy_addr.unique_id, ETH_ALEN);
|
||||
else
|
||||
random_ether_addr(card->dev->dev_addr);
|
||||
eth_random_addr(card->dev->dev_addr);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue