Skip to content

Commit

Permalink
IXP4xx: Whitespace fixes in the Ethernet driver.
Browse files Browse the repository at this point in the history
Signed-off-by: Krzysztof Hałasa <khc@pm.waw.pl>
  • Loading branch information
Krzysztof Hałasa committed May 23, 2009
1 parent 6a68afe commit 2e41840
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/net/arm/ixp4xx_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -817,29 +817,29 @@ static int request_queues(struct port *port)
int err;

err = qmgr_request_queue(RXFREE_QUEUE(port->id), RX_DESCS, 0, 0,
"%s:RX-free", port->netdev->name);
"%s:RX-free", port->netdev->name);
if (err)
return err;

err = qmgr_request_queue(port->plat->rxq, RX_DESCS, 0, 0,
"%s:RX", port->netdev->name);
"%s:RX", port->netdev->name);
if (err)
goto rel_rxfree;

err = qmgr_request_queue(TX_QUEUE(port->id), TX_DESCS, 0, 0,
"%s:TX", port->netdev->name);
"%s:TX", port->netdev->name);
if (err)
goto rel_rx;

err = qmgr_request_queue(port->plat->txreadyq, TX_DESCS, 0, 0,
"%s:TX-ready", port->netdev->name);
"%s:TX-ready", port->netdev->name);
if (err)
goto rel_tx;

/* TX-done queue handles skbs sent out by the NPEs */
if (!ports_open) {
err = qmgr_request_queue(TXDONE_QUEUE, TXDONE_QUEUE_LEN, 0, 0,
"%s:TX-done", DRV_NAME);
"%s:TX-done", DRV_NAME);
if (err)
goto rel_txready;
}
Expand Down

0 comments on commit 2e41840

Please sign in to comment.