mirror of https://gitee.com/openkylin/linux.git
staging: rtl8712: used a better macro
Fixed a sparse warning. Using be16_to_cpus() to avoid double assignment. Signed-off-by: Jannik Becher <becher.jannik@gmail.com> Tested-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
16b8852fa3
commit
ce02320224
|
@ -258,7 +258,7 @@ union recv_frame *r8712_portctrl(struct _adapter *adapter,
|
||||||
/* get ether_type */
|
/* get ether_type */
|
||||||
ptr = ptr + pfhdr->attrib.hdrlen + LLC_HEADER_SIZE;
|
ptr = ptr + pfhdr->attrib.hdrlen + LLC_HEADER_SIZE;
|
||||||
memcpy(ðer_type, ptr, 2);
|
memcpy(ðer_type, ptr, 2);
|
||||||
ether_type = ntohs((unsigned short)ether_type);
|
be16_to_cpus(ðer_type);
|
||||||
|
|
||||||
if ((psta != NULL) && (psta->ieee8021x_blocked)) {
|
if ((psta != NULL) && (psta->ieee8021x_blocked)) {
|
||||||
/* blocked
|
/* blocked
|
||||||
|
|
Loading…
Reference in New Issue