Skip to content

Commit

Permalink
net/nsci: Remove use of dev_queue_xmit_sk
Browse files Browse the repository at this point in the history
We do not use both arguments, so the code path does not change. Upstream
removes the _sk variant in 4.4, so this helps with upstreaming.

Signed-off-by: Joel Stanley <joel@jms.id.au>
  • Loading branch information
Joel Stanley committed Dec 10, 2015
1 parent d188d2b commit a420ac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ncsi/ncsi-cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ int ncsi_xmit_cmd(struct ncsi_cmd_arg *nca)

/* Send NCSI packet */
skb_get(nr->nr_cmd);
ret = dev_queue_xmit_sk(NULL, nr->nr_cmd);
ret = dev_queue_xmit(nr->nr_cmd);
if (ret)
goto out;

Expand Down

0 comments on commit a420ac8

Please sign in to comment.