2014-10-09 06:30:16

by Igor Bogomazov

[permalink] [raw]
Subject: [PATCH] staging: rtl8188eu: coding style fixup

checkpatch.pl tiny fix
get rid of 2 warnings and 2 errors for hal/fw.c

Signed-off-by: Igor Bogomazov <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
Cc: navin patidar <[email protected]>
Cc: Stephen Rothwell <[email protected]>
---
for linux-next 3.17.0

this is an updated version of the patch I've sent two days ago, that one
did not apply cleanly

diff --git a/drivers/staging/rtl8188eu/hal/fw.c b/drivers/staging/rtl8188eu/hal/fw.c
--- a/drivers/staging/rtl8188eu/hal/fw.c
+++ b/drivers/staging/rtl8188eu/hal/fw.c
@@ -154,9 +154,8 @@ static int _rtl88e_fw_free_to_go(struct adapter *adapt)
break;
} while (counter++ < POLLING_READY_TIMEOUT_COUNT);

- if (counter >= POLLING_READY_TIMEOUT_COUNT) {
+ if (counter >= POLLING_READY_TIMEOUT_COUNT)
goto exit;
- }

value32 = usb_read32(adapt, REG_MCUFWDL);
value32 |= MCUFWDL_RDY;
@@ -193,13 +192,13 @@ int rtl88eu_download_fw(struct adapter *adapt)
u32 fwsize;
int err;

- if (request_firmware(&fw, fw_name, device)){
+ if (request_firmware(&fw, fw_name, device)) {
dev_err(device, "Firmware %s not available\n", fw_name);
return -ENOENT;
}

if (fw->size > FW_8188E_SIZE) {
- dev_err(device,"Firmware size exceed 0x%X. Check it.\n",
+ dev_err(device, "Firmware size exceed 0x%X. Check it.\n",
FW_8188E_SIZE);
return -1;
}
@@ -226,7 +225,8 @@ int rtl88eu_download_fw(struct adapter *adapt)
rtl88e_firmware_selfreset(adapt);
}
_rtl88e_enable_fw_download(adapt, true);
- usb_write8(adapt, REG_MCUFWDL, usb_read8(adapt, REG_MCUFWDL) | FWDL_ChkSum_rpt);
+ usb_write8(adapt, REG_MCUFWDL,
+ usb_read8(adapt, REG_MCUFWDL) | FWDL_ChkSum_rpt);
_rtl88e_write_fw(adapt, pfwdata, fwsize);
_rtl88e_enable_fw_download(adapt, false);


2014-10-09 06:32:47

by Denis Kirjanov

[permalink] [raw]
Subject: Re: [PATCH] staging: rtl8188eu: coding style fixup

But you haven't CCed people in the CC list

On 10/9/14, Igor Bogomazov <[email protected]> wrote:
> checkpatch.pl tiny fix
> get rid of 2 warnings and 2 errors for hal/fw.c
>
> Signed-off-by: Igor Bogomazov <[email protected]>
> Cc: Greg Kroah-Hartman <[email protected]>
> Cc: navin patidar <[email protected]>
> Cc: Stephen Rothwell <[email protected]>
> ---
> for linux-next 3.17.0
>
> this is an updated version of the patch I've sent two days ago, that one
> did not apply cleanly
>
> diff --git a/drivers/staging/rtl8188eu/hal/fw.c
> b/drivers/staging/rtl8188eu/hal/fw.c
> --- a/drivers/staging/rtl8188eu/hal/fw.c
> +++ b/drivers/staging/rtl8188eu/hal/fw.c
> @@ -154,9 +154,8 @@ static int _rtl88e_fw_free_to_go(struct adapter *adapt)
> break;
> } while (counter++ < POLLING_READY_TIMEOUT_COUNT);
>
> - if (counter >= POLLING_READY_TIMEOUT_COUNT) {
> + if (counter >= POLLING_READY_TIMEOUT_COUNT)
> goto exit;
> - }
>
> value32 = usb_read32(adapt, REG_MCUFWDL);
> value32 |= MCUFWDL_RDY;
> @@ -193,13 +192,13 @@ int rtl88eu_download_fw(struct adapter *adapt)
> u32 fwsize;
> int err;
>
> - if (request_firmware(&fw, fw_name, device)){
> + if (request_firmware(&fw, fw_name, device)) {
> dev_err(device, "Firmware %s not available\n", fw_name);
> return -ENOENT;
> }
>
> if (fw->size > FW_8188E_SIZE) {
> - dev_err(device,"Firmware size exceed 0x%X. Check it.\n",
> + dev_err(device, "Firmware size exceed 0x%X. Check it.\n",
> FW_8188E_SIZE);
> return -1;
> }
> @@ -226,7 +225,8 @@ int rtl88eu_download_fw(struct adapter *adapt)
> rtl88e_firmware_selfreset(adapt);
> }
> _rtl88e_enable_fw_download(adapt, true);
> - usb_write8(adapt, REG_MCUFWDL, usb_read8(adapt, REG_MCUFWDL) |
> FWDL_ChkSum_rpt);
> + usb_write8(adapt, REG_MCUFWDL,
> + usb_read8(adapt, REG_MCUFWDL) | FWDL_ChkSum_rpt);
> _rtl88e_write_fw(adapt, pfwdata, fwsize);
> _rtl88e_enable_fw_download(adapt, false);
>
> _______________________________________________
> devel mailing list
> [email protected]
> http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel
>


--
Regards,
Denis

2014-10-09 06:38:29

by Igor Bogomazov

[permalink] [raw]
Subject: Re: [PATCH] staging: rtl8188eu: coding style fixup

you are right, would be wise to do that, added

On Thu, 9 Oct 2014 10:32:37 +0400
Denis Kirjanov <[email protected]> wrote:

> But you haven't CCed people in the CC list
>
> On 10/9/14, Igor Bogomazov <[email protected]> wrote:
> > checkpatch.pl tiny fix
> > get rid of 2 warnings and 2 errors for hal/fw.c
> >
> > Signed-off-by: Igor Bogomazov <[email protected]>
> > Cc: Greg Kroah-Hartman <[email protected]>
> > Cc: navin patidar <[email protected]>
> > Cc: Stephen Rothwell <[email protected]>
> > ---
> > for linux-next 3.17.0
> >
> > this is an updated version of the patch I've sent two days ago, that one
> > did not apply cleanly
> >
> > diff --git a/drivers/staging/rtl8188eu/hal/fw.c
> > b/drivers/staging/rtl8188eu/hal/fw.c
> > --- a/drivers/staging/rtl8188eu/hal/fw.c
> > +++ b/drivers/staging/rtl8188eu/hal/fw.c
> > @@ -154,9 +154,8 @@ static int _rtl88e_fw_free_to_go(struct adapter *adapt)
> > break;
> > } while (counter++ < POLLING_READY_TIMEOUT_COUNT);
> >
> > - if (counter >= POLLING_READY_TIMEOUT_COUNT) {
> > + if (counter >= POLLING_READY_TIMEOUT_COUNT)
> > goto exit;
> > - }
> >
> > value32 = usb_read32(adapt, REG_MCUFWDL);
> > value32 |= MCUFWDL_RDY;
> > @@ -193,13 +192,13 @@ int rtl88eu_download_fw(struct adapter *adapt)
> > u32 fwsize;
> > int err;
> >
> > - if (request_firmware(&fw, fw_name, device)){
> > + if (request_firmware(&fw, fw_name, device)) {
> > dev_err(device, "Firmware %s not available\n", fw_name);
> > return -ENOENT;
> > }
> >
> > if (fw->size > FW_8188E_SIZE) {
> > - dev_err(device,"Firmware size exceed 0x%X. Check it.\n",
> > + dev_err(device, "Firmware size exceed 0x%X. Check it.\n",
> > FW_8188E_SIZE);
> > return -1;
> > }
> > @@ -226,7 +225,8 @@ int rtl88eu_download_fw(struct adapter *adapt)
> > rtl88e_firmware_selfreset(adapt);
> > }
> > _rtl88e_enable_fw_download(adapt, true);
> > - usb_write8(adapt, REG_MCUFWDL, usb_read8(adapt, REG_MCUFWDL) |
> > FWDL_ChkSum_rpt);
> > + usb_write8(adapt, REG_MCUFWDL,
> > + usb_read8(adapt, REG_MCUFWDL) | FWDL_ChkSum_rpt);
> > _rtl88e_write_fw(adapt, pfwdata, fwsize);
> > _rtl88e_enable_fw_download(adapt, false);
> >
> > _______________________________________________
> > devel mailing list
> > [email protected]
> > http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel
> >

--
Sincerely yours,

Igor Bogomazov
Saint-Petersburg, Russia

2014-10-09 15:17:51

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH] staging: rtl8188eu: coding style fixup

On Thu, Oct 09, 2014 at 10:30:06AM +0400, Igor Bogomazov wrote:
> checkpatch.pl tiny fix
> get rid of 2 warnings and 2 errors for hal/fw.c

What warnings? What errors? Be specific please.

>

Trailing whitespace :(