Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1544173 > unrolled thread
| Started by | Afonso Bordado <afonsobordado@az8.co> |
|---|---|
| First post | 2016-12-18 17:50 +0100 |
| Last post | 2016-12-19 13:00 +0100 |
| Articles | 4 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] staging: emxx_udc: Fix CamelCase styling issue Afonso Bordado <afonsobordado@az8.co> - 2016-12-18 17:50 +0100
Re: [PATCH] staging: emxx_udc: Fix CamelCase styling issue Joe Perches <joe@perches.com> - 2016-12-18 18:50 +0100
Re: [PATCH] staging: emxx_udc: Fix CamelCase styling issue Afonso Bordado <afonsobordado@az8.co> - 2016-12-18 20:30 +0100
Re: [PATCH] staging: emxx_udc: Fix CamelCase styling issue Dan Carpenter <dan.carpenter@oracle.com> - 2016-12-19 13:00 +0100
| From | Afonso Bordado <afonsobordado@az8.co> |
|---|---|
| Date | 2016-12-18 17:50 +0100 |
| Subject | [PATCH] staging: emxx_udc: Fix CamelCase styling issue |
| Message-ID | <sPMOS-2KE-19@gated-at.bofh.it> |
Converts from CamelCase to the recommended style.
Signed-off-by: Afonso Bordado <afonsobordado@az8.co>
---
drivers/staging/emxx_udc/emxx_udc.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/drivers/staging/emxx_udc/emxx_udc.c b/drivers/staging/emxx_udc/emxx_udc.c
index 3f42fa8..cf5cdd8 100644
--- a/drivers/staging/emxx_udc/emxx_udc.c
+++ b/drivers/staging/emxx_udc/emxx_udc.c
@@ -553,25 +553,25 @@ static void _nbu2ss_dma_unmap_single(
/*-------------------------------------------------------------------------*/
/* Endpoint 0 OUT Transfer (PIO) */
-static int EP0_out_PIO(struct nbu2ss_udc *udc, u8 *pBuf, u32 length)
+static int EP0_out_PIO(struct nbu2ss_udc *udc, u8 *p_buf, u32 length)
{
u32 i;
int nret = 0;
- u32 iWordLength = 0;
- union usb_reg_access *pBuf32 = (union usb_reg_access *)pBuf;
+ u32 i_word_length = 0;
+ union usb_reg_access *p_buf32 = (union usb_reg_access *)p_buf;
/*------------------------------------------------------------*/
/* Read Length */
- iWordLength = length / sizeof(u32);
+ i_word_length = length / sizeof(u32);
/*------------------------------------------------------------*/
/* PIO Read */
- if (iWordLength) {
- for (i = 0; i < iWordLength; i++) {
- pBuf32->dw = _nbu2ss_readl(&udc->p_regs->EP0_READ);
- pBuf32++;
+ if (i_word_length) {
+ for (i = 0; i < i_word_length; i++) {
+ p_buf32->dw = _nbu2ss_readl(&udc->p_regs->EP0_READ);
+ p_buf32++;
}
- nret = iWordLength * sizeof(u32);
+ nret = i_word_length * sizeof(u32);
}
return nret;
--
2.9.3
[toc] | [next] | [standalone]
| From | Joe Perches <joe@perches.com> |
|---|---|
| Date | 2016-12-18 18:50 +0100 |
| Message-ID | <sPNKV-3TD-21@gated-at.bofh.it> |
| In reply to | #1544173 |
On Sun, 2016-12-18 at 16:46 +0000, Afonso Bordado wrote:
> Converts from CamelCase to the recommended style.
>
> Signed-off-by: Afonso Bordado <afonsobordado@az8.co>
> ---
> drivers/staging/emxx_udc/emxx_udc.c | 18 +++++++++---------
> 1 file changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/staging/emxx_udc/emxx_udc.c b/drivers/staging/emxx_udc/emxx_udc.c
> index 3f42fa8..cf5cdd8 100644
> --- a/drivers/staging/emxx_udc/emxx_udc.c
> +++ b/drivers/staging/emxx_udc/emxx_udc.c
> @@ -553,25 +553,25 @@ static void _nbu2ss_dma_unmap_single(
>
> /*-------------------------------------------------------------------------*/
> /* Endpoint 0 OUT Transfer (PIO) */
> -static int EP0_out_PIO(struct nbu2ss_udc *udc, u8 *pBuf, u32 length)
> +static int EP0_out_PIO(struct nbu2ss_udc *udc, u8 *p_buf, u32 length)
> {
> u32 i;
> int nret = 0;
> - u32 iWordLength = 0;
> - union usb_reg_access *pBuf32 = (union usb_reg_access *)pBuf;
> + u32 i_word_length = 0;
> + union usb_reg_access *p_buf32 = (union usb_reg_access *)p_buf;
>
> /*------------------------------------------------------------*/
> /* Read Length */
> - iWordLength = length / sizeof(u32);
> + i_word_length = length / sizeof(u32);
>
> /*------------------------------------------------------------*/
> /* PIO Read */
> - if (iWordLength) {
> - for (i = 0; i < iWordLength; i++) {
> - pBuf32->dw = _nbu2ss_readl(&udc->p_regs->EP0_READ);
> - pBuf32++;
> + if (i_word_length) {
> + for (i = 0; i < i_word_length; i++) {
> + p_buf32->dw = _nbu2ss_readl(&udc->p_regs->EP0_READ);
> + p_buf32++;
> }
> - nret = iWordLength * sizeof(u32);
> + nret = i_word_length * sizeof(u32);
> }
>
> return nret;
Instead of merely converting Hungarian CamelCase to lowercase
with underscores where word transitions occurred, try reading
the code and making sense of what it does to perhaps find a
better variable name instead. Maybe eliminate the variable
altogether.
iWordLength could be reads or numreads
btw: what happens if length is not a multiple of sizeof(u32)?
nret is more commonly ret
p_buf is also not common linux naming, buf is more common.
[toc] | [prev] | [next] | [standalone]
| From | Afonso Bordado <afonsobordado@az8.co> |
|---|---|
| Date | 2016-12-18 20:30 +0100 |
| Message-ID | <sPPjH-5Qn-9@gated-at.bofh.it> |
| In reply to | #1544182 |
> Instead of merely converting Hungarian CamelCase to lowercase > with underscores where word transitions occurred, try reading > the code and making sense of what it does to perhaps find a > better variable name instead. Maybe eliminate the variable > altogether. > > iWordLength could be reads or numreads Ok! > btw: what happens if length is not a multiple of sizeof(u32)? Reading over the code (something I should have done the first time) it seems that it rounds down, not doing the full transfer, and EP0_out_OverBytes handles the remaining transfer. Since EP0_out_OverBytes is only called once and for this purpose would it be perferable to do that on EP0_out_PIO? > nret is more commonly ret > p_buf is also not common linux naming, buf is more common. Ok!
[toc] | [prev] | [next] | [standalone]
| From | Dan Carpenter <dan.carpenter@oracle.com> |
|---|---|
| Date | 2016-12-19 13:00 +0100 |
| Message-ID | <sQ4LM-7gg-21@gated-at.bofh.it> |
| In reply to | #1544173 |
On Sun, Dec 18, 2016 at 04:46:50PM +0000, Afonso Bordado wrote:
> Converts from CamelCase to the recommended style.
>
> Signed-off-by: Afonso Bordado <afonsobordado@az8.co>
> ---
> drivers/staging/emxx_udc/emxx_udc.c | 18 +++++++++---------
> 1 file changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/staging/emxx_udc/emxx_udc.c b/drivers/staging/emxx_udc/emxx_udc.c
> index 3f42fa8..cf5cdd8 100644
> --- a/drivers/staging/emxx_udc/emxx_udc.c
> +++ b/drivers/staging/emxx_udc/emxx_udc.c
> @@ -553,25 +553,25 @@ static void _nbu2ss_dma_unmap_single(
>
> /*-------------------------------------------------------------------------*/
> /* Endpoint 0 OUT Transfer (PIO) */
> -static int EP0_out_PIO(struct nbu2ss_udc *udc, u8 *pBuf, u32 length)
> +static int EP0_out_PIO(struct nbu2ss_udc *udc, u8 *p_buf, u32 length)
> {
> u32 i;
> int nret = 0;
> - u32 iWordLength = 0;
> - union usb_reg_access *pBuf32 = (union usb_reg_access *)pBuf;
> + u32 i_word_length = 0;
> + union usb_reg_access *p_buf32 = (union usb_reg_access *)p_buf;
Remove the i_ and the p_ from the new name. We don't do that in the
linux kernel.
regards,
dan carpenter
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web