]> git.karo-electronics.de Git - linux-beck.git/commitdiff
drivers: staging: rtl8712: rtl871x_xmit.c: Fix Comparisons should place the constant...
authorTapan Prakash T <tapanprakasht@gmail.com>
Tue, 23 Feb 2016 17:15:48 +0000 (22:45 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 5 Mar 2016 22:48:04 +0000 (14:48 -0800)
Fixed checkpatch.pl warning 'Comparisons should place the constant on the
right side of the test'

Signed-off-by: Tapan Prakash T <tapanprakasht@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/rtl871x_xmit.c

index 7089ebd51d8878bc1fb17521417ed8b22ea95f1c..506136ca6b44e92a7266f9e2f942e88ff190f247 100644 (file)
@@ -241,7 +241,7 @@ sint r8712_update_attrib(struct _adapter *padapter, _pkt *pkt,
        }
        /* r8712_xmitframe_coalesce() overwrite this!*/
        pattrib->pktlen = pktfile.pkt_len;
-       if (ETH_P_IP == pattrib->ether_type) {
+       if (pattrib->ether_type == ETH_P_IP) {
                /* The following is for DHCP and ARP packet, we use cck1M to
                 * tx these packets and let LPS awake some time
                 * to prevent DHCP protocol fail */
@@ -250,7 +250,7 @@ sint r8712_update_attrib(struct _adapter *padapter, _pkt *pkt,
                _r8712_pktfile_read(&pktfile, &tmp[0], 24);
                pattrib->dhcp_pkt = 0;
                if (pktfile.pkt_len > 282) {/*MINIMUM_DHCP_PACKET_SIZE)*/
-                       if (ETH_P_IP == pattrib->ether_type) {/* IP header*/
+                       if (pattrib->ether_type == ETH_P_IP) {/* IP header*/
                                if (((tmp[21] == 68) && (tmp[23] == 67)) ||
                                        ((tmp[21] == 67) && (tmp[23] == 68))) {
                                        /* 68 : UDP BOOTP client