From: Sergio Paracuellos Date: Sun, 9 Oct 2016 15:10:27 +0000 (+0200) Subject: staging: wlan-ng: fix line style warnings in p80211wep.c X-Git-Tag: v4.10-rc1~148^2~645 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=87f26d08cf1328de80359f426cfc0f1d64cfcee4;p=karo-tx-linux.git staging: wlan-ng: fix line style warnings in p80211wep.c This patch fix the following checkpatch.pl warnings in p80211wep.c: WARNING: line over 80 characters Signed-off-by: Sergio Paracuellos Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wlan-ng/p80211wep.c b/drivers/staging/wlan-ng/p80211wep.c index 59efb354f3e4..2e33fd7feddc 100644 --- a/drivers/staging/wlan-ng/p80211wep.c +++ b/drivers/staging/wlan-ng/p80211wep.c @@ -217,8 +217,8 @@ int wep_decrypt(struct wlandevice *wlandev, u8 *buf, u32 len, int key_override, } /* encrypts in-place. */ -int wep_encrypt(struct wlandevice *wlandev, u8 *buf, u8 *dst, u32 len, int keynum, - u8 *iv, u8 *icv) +int wep_encrypt(struct wlandevice *wlandev, u8 *buf, + u8 *dst, u32 len, int keynum, u8 *iv, u8 *icv) { u32 i, j, k, crc, keylen; u8 s[256], key[64];