Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1602864 > unrolled thread
| Started by | Dylan Leggio <dleggio1@binghamton.edu> |
|---|---|
| First post | 2017-03-16 23:00 +0100 |
| Last post | 2017-03-17 01:50 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] Staging: wilc1000: fix two typos in #define's Dylan Leggio <dleggio1@binghamton.edu> - 2017-03-16 23:00 +0100
Re: [PATCH] Staging: wilc1000: fix two typos in #define's Greg KH <gregkh@linuxfoundation.org> - 2017-03-17 01:50 +0100
| From | Dylan Leggio <dleggio1@binghamton.edu> |
|---|---|
| Date | 2017-03-16 23:00 +0100 |
| Subject | [PATCH] Staging: wilc1000: fix two typos in #define's |
| Message-ID | <tlLB7-4sX-1@gated-at.bofh.it> |
Signed-off-by: Dylan Leggio <dleggio1@binghamton.edu>
---
drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
index a37896fcd683..1bb63702c623 100644
--- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
+++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
@@ -29,8 +29,8 @@
#define P2P_INV_REQ 0x03
#define P2P_INV_RSP 0x04
#define PUBLIC_ACT_VENDORSPEC 0x09
-#define GAS_INTIAL_REQ 0x0a
-#define GAS_INTIAL_RSP 0x0b
+#define GAS_INITIAL_REQ 0x0a
+#define GAS_INITIAL_RSP 0x0b
#define INVALID_CHANNEL 0
@@ -1477,10 +1477,10 @@ void WILC_WFI_p2p_rx(struct net_device *dev, u8 *buff, u32 size)
}
if (buff[ACTION_CAT_ID] == PUB_ACTION_ATTR_ID) {
switch (buff[ACTION_SUBTYPE_ID]) {
- case GAS_INTIAL_REQ:
+ case GAS_INITIAL_REQ:
break;
- case GAS_INTIAL_RSP:
+ case GAS_INITIAL_RSP:
break;
case PUBLIC_ACT_VENDORSPEC:
@@ -1666,10 +1666,10 @@ static int mgmt_tx(struct wiphy *wiphy,
curr_channel = chan->hw_value;
}
switch (buf[ACTION_SUBTYPE_ID]) {
- case GAS_INTIAL_REQ:
+ case GAS_INITIAL_REQ:
break;
- case GAS_INTIAL_RSP:
+ case GAS_INITIAL_RSP:
break;
case PUBLIC_ACT_VENDORSPEC:
--
2.12.0
[toc] | [next] | [standalone]
| From | Greg KH <gregkh@linuxfoundation.org> |
|---|---|
| Date | 2017-03-17 01:50 +0100 |
| Message-ID | <tlOfD-6lR-15@gated-at.bofh.it> |
| In reply to | #1602864 |
On Thu, Mar 16, 2017 at 05:51:12PM -0400, Dylan Leggio wrote: > Signed-off-by: Dylan Leggio <dleggio1@binghamton.edu> I can't take patches without any changelog text at all, sorry. greg k-h
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web