Skip to content

Commit

Permalink
staging: r8192e_pci: fix htons error
Browse files Browse the repository at this point in the history
A sparse error fixup removed a htons() which is required for the driver
to function. This patch puts the htons() back and fixes the sparse
warning correctly by changing the left side cast.

Signed-off-by: Sean MacLennan <seanm@seanm.ca>
Cc: stable <stable@vger.kernel.org> # 3.14
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Sean MacLennan authored and Greg Kroah-Hartman committed May 28, 2014
1 parent 28a821c commit 9326c5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/rtl8192e/rtllib_tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ inline int rtllib_put_snap(u8 *data, u16 h_proto)
snap->oui[1] = oui[1];
snap->oui[2] = oui[2];

*(u16 *)(data + SNAP_SIZE) = h_proto;
*(__be16 *)(data + SNAP_SIZE) = htons(h_proto);

return SNAP_SIZE + sizeof(u16);
}
Expand Down

0 comments on commit 9326c5c

Please sign in to comment.