2010-09-18 01:06:24

by Vipin Mehta

[permalink] [raw]
Subject: [PATCH] staging: ath6kl: Fixing a compile error

Fixing a typo that came in as part of commit
fa1ae16c97d25bb57ed9e1971b9e814da6a290bd.

Reported-by: Randy Dunlap <[email protected]>
Signed-off-by: Vipin Mehta <[email protected]>
---
drivers/staging/ath6kl/wmi/wmi.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/ath6kl/wmi/wmi.c b/drivers/staging/ath6kl/wmi/wmi.c
index 9811ce7..23ae5d2 100644
--- a/drivers/staging/ath6kl/wmi/wmi.c
+++ b/drivers/staging/ath6kl/wmi/wmi.c
@@ -1458,7 +1458,7 @@ wmi_bssInfo_event_rx(struct wmi_t *wmip, A_UINT8 *datap, int len)

A_DPRINTF(DBG_WMI2, (DBGFMT "bssInfo event - ch %u, rssi %02x, "
"bssid \"%pM\"\n", DBGARG, bih->channel,
- (unsigned char) bih->rssi, i&bih->bssid[0]));
+ (unsigned char) bih->rssi, &bih->bssid[0]));

if(wps_enable && (bih->frameType == PROBERESP_FTYPE) ) {
wmi_node_return(wmip, bss);
--
1.6.3.3



2010-09-18 08:41:41

by Andy Shevchenko

[permalink] [raw]
Subject: Re: [PATCH] staging: ath6kl: Fixing a compile error

Yeah, but this is fixed in my correction series.
Whole store there:

http://lkml.org/lkml/2010/9/16/330
http://lkml.org/lkml/2010/9/17/54

On Sat, Sep 18, 2010 at 4:06 AM, Vipin Mehta <[email protected]> wrote:
> Fixing a typo that came in as part of commit
> fa1ae16c97d25bb57ed9e1971b9e814da6a290bd.
>
> Reported-by: Randy Dunlap <[email protected]>
> Signed-off-by: Vipin Mehta <[email protected]>
> ---
>  drivers/staging/ath6kl/wmi/wmi.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/staging/ath6kl/wmi/wmi.c b/drivers/staging/ath6kl/wmi/wmi.c
> index 9811ce7..23ae5d2 100644
> --- a/drivers/staging/ath6kl/wmi/wmi.c
> +++ b/drivers/staging/ath6kl/wmi/wmi.c
> @@ -1458,7 +1458,7 @@ wmi_bssInfo_event_rx(struct wmi_t *wmip, A_UINT8 *datap, int len)
>
>        A_DPRINTF(DBG_WMI2, (DBGFMT "bssInfo event - ch %u, rssi %02x, "
>                "bssid \"%pM\"\n", DBGARG, bih->channel,
> -               (unsigned char) bih->rssi, i&bih->bssid[0]));
> +               (unsigned char) bih->rssi, &bih->bssid[0]));
>
>     if(wps_enable && (bih->frameType == PROBERESP_FTYPE) ) {
>         wmi_node_return(wmip, bss);
> --
> 1.6.3.3
>
>



--
With Best Regards,
Andy Shevchenko

2010-09-21 00:01:31

by Greg KH

[permalink] [raw]
Subject: Re: [PATCH] staging: ath6kl: Fixing a compile error

On Sat, Sep 18, 2010 at 11:41:40AM +0300, Andy Shevchenko wrote:
> Yeah, but this is fixed in my correction series.
> Whole store there:
>
> http://lkml.org/lkml/2010/9/16/330
> http://lkml.org/lkml/2010/9/17/54

Yes, I've now applied this one, thanks.

greg k-h