]> Joshua Wise's Git repositories - netwatch.git/commitdiff
Wait for completion before we pull the trigger on the pbuf
authorJoshua Wise <joshua@nyus.joshuawise.com>
Thu, 4 Dec 2008 23:08:39 +0000 (18:08 -0500)
committerJoshua Wise <joshua@nyus.joshuawise.com>
Thu, 4 Dec 2008 23:08:39 +0000 (18:08 -0500)
net/3c90x.c

index 3a6c958ee9dde5f3c9489332342cc45dc103a74b..e3236d9d0fb6526485d5c899374bea3174192787 100644 (file)
@@ -481,20 +481,6 @@ a3c90x_transmit(struct pbuf *p)
        static unsigned int stillwaiting = 0;
        unsigned int n, len;
 
-       if (stillwaiting)
-       {
-               while (!(inw(INF_3C90X.IOAddr + regCommandIntStatus_w) & INT_TXCOMPLETE) && oneshot_running())
-                       ;
-               if (!(inw(INF_3C90X.IOAddr + regCommandIntStatus_w) & INT_TXCOMPLETE))
-               {
-                       outputf("3c90x: tx timeout? txstat %02x", inb(INF_3C90X.IOAddr + regTxStatus_b));
-                       outputf("3c90x: Gen sts %04x", inw(INF_3C90X.IOAddr + regCommandIntStatus_w));
-               }
-               status = inb(INF_3C90X.IOAddr + regTxStatus_b);
-               outb(INF_3C90X.IOAddr + regTxStatus_b, 0x00);
-               stillwaiting = 0;
-       }
-
        _issue_command(INF_3C90X.IOAddr, cmdStallCtl, 2 /* Stall download */);
 
        /** Setup the DPD (download descriptor) **/
@@ -528,6 +514,19 @@ a3c90x_transmit(struct pbuf *p)
 
        oneshot_start_ms(10);
        stillwaiting = 1;
+       if (stillwaiting)
+       {
+               while (!(inw(INF_3C90X.IOAddr + regCommandIntStatus_w) & INT_TXCOMPLETE) && oneshot_running())
+                       ;
+               if (!(inw(INF_3C90X.IOAddr + regCommandIntStatus_w) & INT_TXCOMPLETE))
+               {
+                       outputf("3c90x: tx timeout? txstat %02x", inb(INF_3C90X.IOAddr + regTxStatus_b));
+                       outputf("3c90x: Gen sts %04x", inw(INF_3C90X.IOAddr + regCommandIntStatus_w));
+               }
+               status = inb(INF_3C90X.IOAddr + regTxStatus_b);
+               outb(INF_3C90X.IOAddr + regTxStatus_b, 0x00);
+               stillwaiting = 0;
+       }
                
 #if 0          
        /** successful completion (sans "interrupt Requested" bit) **/
This page took 0.023091 seconds and 4 git commands to generate.