All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] staging: lustre: align else if statement to coding standard
@ 2017-02-06 12:26 Maksymilian Piechota
  2017-02-06 12:50 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 5+ messages in thread
From: Maksymilian Piechota @ 2017-02-06 12:26 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: Maksymilian Piechota, linux-kernel, devel

- move logical continuations at the end of line
- move else if statement to a single line
- Replace spaces with tabstop.

Signed-off-by: Maksymilian Piechota <maksymilianpiechota@gmail.com>
---
 drivers/staging/wlan-ng/prism2mgmt.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/wlan-ng/prism2mgmt.c b/drivers/staging/wlan-ng/prism2mgmt.c
index 16fb2d3..5277f36 100644
--- a/drivers/staging/wlan-ng/prism2mgmt.c
+++ b/drivers/staging/wlan-ng/prism2mgmt.c
@@ -1307,10 +1307,8 @@ int prism2mgmt_wlansniff(struct wlandevice *wlandev, void *msgp)
 		    && (msg->prismheader.data == P80211ENUM_truth_true)) {
 			hw->sniffhdr = 0;
 			wlandev->netdev->type = ARPHRD_IEEE80211_PRISM;
-		} else
-		    if ((msg->wlanheader.status ==
-			 P80211ENUM_msgitem_status_data_ok)
-			&& (msg->wlanheader.data == P80211ENUM_truth_true)) {
+		} else if ((msg->wlanheader.status == P80211ENUM_msgitem_status_data_ok) &&
+			   (msg->wlanheader.data == P80211ENUM_truth_true)) {
 			hw->sniffhdr = 1;
 			wlandev->netdev->type = ARPHRD_IEEE80211_PRISM;
 		} else {
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-02-06 14:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-06 12:26 [PATCH v3] staging: lustre: align else if statement to coding standard Maksymilian Piechota
2017-02-06 12:50 ` Greg Kroah-Hartman
2017-02-06 12:56   ` Maksymilian Piechota
2017-02-06 13:03     ` Greg Kroah-Hartman
2017-02-06 14:50       ` Joe Perches

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.