diff options
author | Masakazu Mokuno <mokuno@sm.sony.co.jp> | 2007-07-20 04:20:54 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-07-24 16:28:39 -0400 |
commit | 9f6c9a8c50bc84ec748fec779ead321ee2b2debc (patch) | |
tree | e0e58850265784fc6a4515c7cc637179d430a8d3 /drivers/net/ps3_gelic_net.c | |
parent | ceded32f097ba753fb4d339ad5c74f265ea8a03d (diff) |
ps3: fix wrong calculation of rx descriptor address
Fixed the bug that calculation of the address of rx descriptor was
wrong.
Signed-off-by: Masakazu Mokuno <mokuno@sm.sony.co.jp>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/ps3_gelic_net.c')
-rw-r--r-- | drivers/net/ps3_gelic_net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ps3_gelic_net.c b/drivers/net/ps3_gelic_net.c index 08d25066f051..676a89df4d70 100644 --- a/drivers/net/ps3_gelic_net.c +++ b/drivers/net/ps3_gelic_net.c | |||
@@ -1107,7 +1107,7 @@ static int gelic_net_open(struct net_device *netdev) | |||
1107 | card->descr, GELIC_NET_TX_DESCRIPTORS)) | 1107 | card->descr, GELIC_NET_TX_DESCRIPTORS)) |
1108 | goto alloc_tx_failed; | 1108 | goto alloc_tx_failed; |
1109 | if (gelic_net_init_chain(card, &card->rx_chain, | 1109 | if (gelic_net_init_chain(card, &card->rx_chain, |
1110 | card->descr + GELIC_NET_RX_DESCRIPTORS, | 1110 | card->descr + GELIC_NET_TX_DESCRIPTORS, |
1111 | GELIC_NET_RX_DESCRIPTORS)) | 1111 | GELIC_NET_RX_DESCRIPTORS)) |
1112 | goto alloc_rx_failed; | 1112 | goto alloc_rx_failed; |
1113 | 1113 | ||