diff options
author | Colin Ian King <colin.king@canonical.com> | 2015-12-08 23:49:31 +0000 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2015-12-11 14:09:00 +0200 |
commit | ba38a1718b7386bacbaed81167a68b9a673a0a42 (patch) | |
tree | d4c05b1ae745f12ecbb895b812e73986947f87af | |
parent | ed14dc0af7ccea867b479feb88efdfe43ca2a0f9 (diff) | |
download | op-kernel-dev-ba38a1718b7386bacbaed81167a68b9a673a0a42.zip op-kernel-dev-ba38a1718b7386bacbaed81167a68b9a673a0a42.tar.gz |
ath9k: fix inconsistent indenting on return statement
minor change, indenting is one tab out.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
-rw-r--r-- | drivers/net/wireless/ath/ath9k/xmit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/xmit.c b/drivers/net/wireless/ath/ath9k/xmit.c index 82fc76f..fe795fc 100644 --- a/drivers/net/wireless/ath/ath9k/xmit.c +++ b/drivers/net/wireless/ath/ath9k/xmit.c @@ -2915,7 +2915,7 @@ int ath9k_tx99_send(struct ath_softc *sc, struct sk_buff *skb, if (skb_headroom(skb) < padsize) { ath_dbg(common, XMIT, "tx99 padding failed\n"); - return -EINVAL; + return -EINVAL; } skb_push(skb, padsize); |