Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: rtl8188eu: core: rtw_xmit: Move constant of the right side

Constants should be on the right side of comparisons.

Issue found by checkpatch.pl script.

Signed-off-by: Georgiana Rodica Chelu <georgiana.chelu93@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Georgiana Rodica Chelu and committed by
Greg Kroah-Hartman
7d7be350 777c5e94

+3 -3
+3 -3
drivers/staging/rtl8188eu/core/rtw_xmit.c
··· 451 451 452 452 pattrib->pktlen = pktfile.pkt_len; 453 453 454 - if (ETH_P_IP == pattrib->ether_type) { 454 + if (pattrib->ether_type == ETH_P_IP) { 455 455 /* The following is for DHCP and ARP packet, we use cck1M to tx these packets and let LPS awake some time */ 456 456 /* to prevent DHCP protocol fail */ 457 457 u8 tmp[24]; 458 458 _rtw_pktfile_read(&pktfile, &tmp[0], 24); 459 459 pattrib->dhcp_pkt = 0; 460 460 if (pktfile.pkt_len > 282) {/* MINIMUM_DHCP_PACKET_SIZE) { */ 461 - if (ETH_P_IP == pattrib->ether_type) {/* IP header */ 461 + if (pattrib->ether_type == ETH_P_IP) {/* IP header */ 462 462 if (((tmp[21] == 68) && (tmp[23] == 67)) || 463 463 ((tmp[21] == 67) && (tmp[23] == 68))) { 464 464 /* 68 : UDP BOOTP client */ ··· 469 469 } 470 470 } 471 471 } 472 - } else if (0x888e == pattrib->ether_type) { 472 + } else if (pattrib->ether_type == 0x888e) { 473 473 DBG_88E_LEVEL(_drv_info_, "send eapol packet\n"); 474 474 } 475 475