Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1575599 > unrolled thread
| Started by | Maksymilian Piechota <maksymilianpiechota@gmail.com> |
|---|---|
| First post | 2017-02-07 13:10 +0100 |
| Last post | 2017-02-07 13:10 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v5 2/3] staging: wlan-ng: move else if statement to a single line Maksymilian Piechota <maksymilianpiechota@gmail.com> - 2017-02-07 13:10 +0100
| From | Maksymilian Piechota <maksymilianpiechota@gmail.com> |
|---|---|
| Date | 2017-02-07 13:10 +0100 |
| Subject | [PATCH v5 2/3] staging: wlan-ng: move else if statement to a single line |
| Message-ID | <t8cKR-2F9-7@gated-at.bofh.it> |
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 top | Article view | linux.kernel
csiph-web