Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1574949
| From | Maksymilian Piechota <maksymilianpiechota@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v4 2/2] staging: lustre: move else if statement to a single line |
| Date | 2017-02-06 17:20 +0100 |
| Message-ID | <t7Ubh-7e3-31@gated-at.bofh.it> (permalink) |
| References | <t7Ubg-7e3-17@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Signed-off-by: Maksymilian Piechota <maksymilianpiechota@gmail.com>
---
drivers/staging/wlan-ng/prism2mgmt.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/staging/wlan-ng/prism2mgmt.c b/drivers/staging/wlan-ng/prism2mgmt.c
index 64a9ebc..af83f2a 100644
--- a/drivers/staging/wlan-ng/prism2mgmt.c
+++ b/drivers/staging/wlan-ng/prism2mgmt.c
@@ -1307,8 +1307,7 @@ 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) &&
+ } 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;
--
2.1.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v4 2/2] staging: lustre: move else if statement to a single line Maksymilian Piechota <maksymilianpiechota@gmail.com> - 2017-02-06 17:20 +0100 Re: [PATCH v4 2/2] staging: lustre: move else if statement to a single line Joe Perches <joe@perches.com> - 2017-02-06 19:00 +0100
csiph-web