Skip to content

Commit

Permalink
qla3xxx: bugfix for line omitted in previous patch.
Browse files Browse the repository at this point in the history
This missing line caused transmit errors on the Qlogic 4032 chip.

Signed-off-by: Ron Mercer <ron.mercer@qlogic.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Ron Mercer authored and Jeff Garzik committed Mar 3, 2007
1 parent e0e20a1 commit 63f7792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/qla3xxx.c
Original file line number Diff line number Diff line change
Expand Up @@ -2210,7 +2210,7 @@ static int ql_send_map(struct ql3_adapter *qdev,
{
struct oal *oal;
struct oal_entry *oal_entry;
int len = skb->len;
int len = skb_headlen(skb);
dma_addr_t map;
int err;
int completed_segs, i;
Expand Down

0 comments on commit 63f7792

Please sign in to comment.