]> Joshua Wise's Git repositories - netwatch.git/blobdiff - net/3c90x.c
who knows if this will work
[netwatch.git] / net / 3c90x.c
index ea7914c673ec8300a6633f01a77f4e3c1b9cf78a..30283a29c17de2f053033c06211d315a5ec13fa9 100644 (file)
@@ -480,6 +480,20 @@ a3c90x_transmit(struct pbuf *p)
        unsigned char status;
        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 */);
 
@@ -514,19 +528,6 @@ 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.022061 seconds and 4 git commands to generate.