Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1575602 > unrolled thread
| Started by | Maksymilian Piechota <maksymilianpiechota@gmail.com> |
|---|---|
| First post | 2017-02-07 13:10 +0100 |
| Last post | 2017-02-09 13:20 +0100 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH v5 0/3] staging: wlan-ng: align else if statement to coding standard Maksymilian Piechota <maksymilianpiechota@gmail.com> - 2017-02-07 13:10 +0100
[PATCH v5 3/3] staging: wlan-ng: realign else if continuation Maksymilian Piechota <maksymilianpiechota@gmail.com> - 2017-02-07 13:10 +0100
Re: [PATCH v5 0/3] staging: wlan-ng: align else if statement to coding standard Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2017-02-09 13:20 +0100
| From | Maksymilian Piechota <maksymilianpiechota@gmail.com> |
|---|---|
| Date | 2017-02-07 13:10 +0100 |
| Subject | [PATCH v5 0/3] staging: wlan-ng: align else if statement to coding standard |
| Message-ID | <t8cKR-2F9-9@gated-at.bofh.it> |
Patch version 5: - break up particular changes to separate commits - change prefix to proper driver (wlan-ng) Maksymilian Piechota (3): staging: wlan-ng: move logical continuations at the end of line staging: wlan-ng: move else if statement to a single line staging: wlan-ng: realign else if continuation drivers/staging/wlan-ng/prism2mgmt.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) -- 2.1.4
[toc] | [next] | [standalone]
| From | Maksymilian Piechota <maksymilianpiechota@gmail.com> |
|---|---|
| Date | 2017-02-07 13:10 +0100 |
| Subject | [PATCH v5 3/3] staging: wlan-ng: realign else if continuation |
| Message-ID | <t8cKS-2F9-25@gated-at.bofh.it> |
| In reply to | #1575602 |
Signed-off-by: Maksymilian Piechota <maksymilianpiechota@gmail.com>
---
drivers/staging/wlan-ng/prism2mgmt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/wlan-ng/prism2mgmt.c b/drivers/staging/wlan-ng/prism2mgmt.c
index af83f2a..5277f36 100644
--- a/drivers/staging/wlan-ng/prism2mgmt.c
+++ b/drivers/staging/wlan-ng/prism2mgmt.c
@@ -1308,7 +1308,7 @@ int prism2mgmt_wlansniff(struct wlandevice *wlandev, void *msgp)
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)) {
+ (msg->wlanheader.data == P80211ENUM_truth_true)) {
hw->sniffhdr = 1;
wlandev->netdev->type = ARPHRD_IEEE80211_PRISM;
} else {
--
2.1.4
[toc] | [prev] | [next] | [standalone]
| From | Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
|---|---|
| Date | 2017-02-09 13:20 +0100 |
| Subject | Re: [PATCH v5 0/3] staging: wlan-ng: align else if statement to coding standard |
| Message-ID | <t8VRE-62y-11@gated-at.bofh.it> |
| In reply to | #1575602 |
On Tue, Feb 07, 2017 at 07:06:12AM -0500, Maksymilian Piechota wrote: > Patch version 5: > - break up particular changes to separate commits > - change prefix to proper driver (wlan-ng) What changed in the previous 4 versions?
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web