]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
tg3: inline tg3_cond_int()
authorMatt Carlson <mcarlson@broadcom.com>
Tue, 1 Sep 2009 12:47:49 +0000 (12:47 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 2 Sep 2009 07:43:22 +0000 (00:43 -0700)
This patch inlines the code of tg3_cond_int() into the function's only
callsite.  This prep work makes the following patch cleaner.

Signed-off-by: Matt Carlson <mcarlson@broadcom.com>
Reviewed-by: Benjamin Li <benli@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/tg3.c

index 9d5c1786c66489fc891b86f392719ff3c8174740..65ff286b508a03c287eacb09f3edc8790497cd19 100644 (file)
@@ -618,18 +618,9 @@ static void tg3_disable_ints(struct tg3 *tp)
        tw32_mailbox_f(tp->napi[0].int_mbox, 0x00000001);
 }
 
-static inline void tg3_cond_int(struct tg3 *tp)
-{
-       if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) &&
-           (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
-               tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
-       else
-               tw32(HOSTCC_MODE, tp->coalesce_mode |
-                    (HOSTCC_MODE_ENABLE | HOSTCC_MODE_NOW));
-}
-
 static void tg3_enable_ints(struct tg3 *tp)
 {
+       u32 coal_now;
        struct tg3_napi *tnapi = &tp->napi[0];
        tp->irq_sync = 0;
        wmb();
@@ -639,7 +630,16 @@ static void tg3_enable_ints(struct tg3 *tp)
        tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
        if (tp->tg3_flags2 & TG3_FLG2_1SHOT_MSI)
                tw32_mailbox_f(tnapi->int_mbox, tnapi->last_tag << 24);
-       tg3_cond_int(tp);
+
+       coal_now = HOSTCC_MODE_NOW;
+
+       /* Force an initial interrupt */
+       if (!(tp->tg3_flags & TG3_FLAG_TAGGED_STATUS) &&
+           (tp->napi[0].hw_status->status & SD_STATUS_UPDATED))
+               tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl | GRC_LCLCTRL_SETINT);
+       else
+               tw32(HOSTCC_MODE, tp->coalesce_mode |
+                    HOSTCC_MODE_ENABLE | coal_now);
 }
 
 static inline unsigned int tg3_has_work(struct tg3_napi *tnapi)