]> git.karo-electronics.de Git - linux-beck.git/commitdiff
e1000e: replace '1' with 'true' for boolean get_link_status
authorBruce Allan <bruce.w.allan@intel.com>
Wed, 1 Feb 2012 11:16:42 +0000 (11:16 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Fri, 10 Feb 2012 08:07:25 +0000 (00:07 -0800)
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/e1000e/netdev.c
drivers/net/ethernet/intel/e1000e/phy.c

index 7ccd5f3cef61971c7a5493af5b9f0b2cd9c6829c..f868fb822a303ac6f62eed632ae066865d5b7b8f 100644 (file)
@@ -1652,7 +1652,7 @@ static irqreturn_t e1000_intr_msi(int irq, void *data)
         */
 
        if (icr & E1000_ICR_LSC) {
-               hw->mac.get_link_status = 1;
+               hw->mac.get_link_status = true;
                /*
                 * ICH8 workaround-- Call gig speed drop workaround on cable
                 * disconnect (LSC) before accessing any PHY registers
@@ -1718,7 +1718,7 @@ static irqreturn_t e1000_intr(int irq, void *data)
         */
 
        if (icr & E1000_ICR_LSC) {
-               hw->mac.get_link_status = 1;
+               hw->mac.get_link_status = true;
                /*
                 * ICH8 workaround-- Call gig speed drop workaround on cable
                 * disconnect (LSC) before accessing any PHY registers
@@ -1775,7 +1775,7 @@ static irqreturn_t e1000_msix_other(int irq, void *data)
        if (icr & E1000_ICR_OTHER) {
                if (!(icr & E1000_ICR_LSC))
                        goto no_link_interrupt;
-               hw->mac.get_link_status = 1;
+               hw->mac.get_link_status = true;
                /* guard against interrupt when we're going down */
                if (!test_bit(__E1000_DOWN, &adapter->state))
                        mod_timer(&adapter->watchdog_timer, jiffies + 1);
index e8ad0804702fea090bc5fc6407d1b7d8e109f423..6f44c3fb80b6b30d2abf8f0f6e086852aa9ce2f7 100644 (file)
@@ -1141,7 +1141,7 @@ static s32 e1000_copper_link_autoneg(struct e1000_hw *hw)
                }
        }
 
-       hw->mac.get_link_status = 1;
+       hw->mac.get_link_status = true;
 
        return ret_val;
 }