chelsio: Fix non-NAPI compile

Chelsio without NAPI enabled has been broken (won't compile) since
3de00b89 ("chelsio: NAPI speed improvement"):

drivers/net/chelsio/sge.c: In function `t1_interrupt`:
drivers/net/chelsio/sge.c:1716: error: `Q` undeclared (first use in this function)

The change below seems to add back in the declaration and
initialization of `Q` that was removed by mistake, and at least makes
the driver compile for me, although I have no hardware and hence no
way to test whether this actually works.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>

authored by Roland Dreier and committed by Jeff Garzik 54d3e568 e0994eb1

+1
+1
drivers/net/chelsio/sge.c
··· 1696 { 1697 int work_done; 1698 struct adapter *adapter = cookie; 1699 1700 spin_lock(&adapter->async_lock); 1701
··· 1696 { 1697 int work_done; 1698 struct adapter *adapter = cookie; 1699 + struct respQ *Q = &adapter->sge->respQ; 1700 1701 spin_lock(&adapter->async_lock); 1702