NFC: port100: Convert cpu_to_le16(le16_to_cpu(E1) + E2) to use le16_add_cpu().
[ Upstream commit 718eae277e62a26e5862eb72a830b5e0fe37b04a ] Convert cpu_to_le16(le16_to_cpu(frame->datalen) + len) to use le16_add_cpu(), which is more concise and does the same thing. Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Mao Wenan <maowenan@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
354704ede9
commit
ec0237cb36
1 changed files with 1 additions and 1 deletions
|
@ -574,7 +574,7 @@ static void port100_tx_update_payload_len(void *_frame, int len)
|
|||
{
|
||||
struct port100_frame *frame = _frame;
|
||||
|
||||
frame->datalen = cpu_to_le16(le16_to_cpu(frame->datalen) + len);
|
||||
le16_add_cpu(&frame->datalen, len);
|
||||
}
|
||||
|
||||
static bool port100_rx_frame_is_valid(void *_frame)
|
||||
|
|
Loading…
Reference in a new issue