* [Outreachy kernel] [PATCH v2] staging: rtl8723bs: hal: Remove camelcase in Hal8723BReg.h @ 2021-04-06 13:05 Fabio M. De Francesco 2021-04-06 14:11 ` Greg KH 0 siblings, 1 reply; 5+ messages in thread From: Fabio M. De Francesco @ 2021-04-06 13:05 UTC (permalink / raw) To: gregkh, outreachy-kernel, linux-staging, linux-kernel Cc: Fabio M. De Francesco Remove camelcase in some symbols defined in Hal8723BReg.h. These symbols are not used anywhere else, therefore this patch does not break the driver. Signed-off-by: Fabio M. De Francesco <fmdefrancesco@gmail.com> --- drivers/staging/rtl8723bs/hal/Hal8723BReg.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/staging/rtl8723bs/hal/Hal8723BReg.h b/drivers/staging/rtl8723bs/hal/Hal8723BReg.h index cc249e15b4bd..60c1f966c5de 100644 --- a/drivers/staging/rtl8723bs/hal/Hal8723BReg.h +++ b/drivers/staging/rtl8723bs/hal/Hal8723BReg.h @@ -110,7 +110,7 @@ #define REG_RSVD3_8723B 0x0168 #define REG_C2HEVT_MSG_NORMAL_8723B 0x01A0 #define REG_C2HEVT_CMD_SEQ_88XX 0x01A1 -#define REG_C2hEVT_CMD_CONTENT_88XX 0x01A2 +#define REG_C2HEVT_CMD_CONTENT_88XX 0x01A2 #define REG_C2HEVT_CMD_LEN_88XX 0x01AE #define REG_C2HEVT_CLEAR_8723B 0x01AF #define REG_MCUTST_1_8723B 0x01C0 @@ -424,13 +424,13 @@ #define IMR_RXFOVW_8723B BIT8 /* Receive FIFO Overflow */ /* 2 ACMHWCTRL 0x05C0 */ -#define AcmHw_HwEn_8723B BIT(0) -#define AcmHw_VoqEn_8723B BIT(1) -#define AcmHw_ViqEn_8723B BIT(2) -#define AcmHw_BeqEn_8723B BIT(3) -#define AcmHw_VoqStatus_8723B BIT(5) -#define AcmHw_ViqStatus_8723B BIT(6) -#define AcmHw_BeqStatus_8723B BIT(7) +#define ACMHW_HWEN_8723B BIT(0) +#define ACMHW_VOQEN_8723B BIT(1) +#define ACMHW_VIQEN_8723B BIT(2) +#define ACMHW_BEQEN_8723B BIT(3) +#define ACMHW_VOQSTATUS_8723B BIT(5) +#define ACMHW_VIQSTATUS_8723B BIT(6) +#define ACMHW_BEQSTATUS_8723B BIT(7) /* 8195 (RCR) Receive Configuration Register (Offset 0x608, 32 bits) */ #define RCR_TCPOFLD_EN BIT25 /* Enable TCP checksum offload */ -- 2.30.2 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Outreachy kernel] [PATCH v2] staging: rtl8723bs: hal: Remove camelcase in Hal8723BReg.h 2021-04-06 13:05 [Outreachy kernel] [PATCH v2] staging: rtl8723bs: hal: Remove camelcase in Hal8723BReg.h Fabio M. De Francesco @ 2021-04-06 14:11 ` Greg KH 2021-04-06 14:34 ` FMDF 0 siblings, 1 reply; 5+ messages in thread From: Greg KH @ 2021-04-06 14:11 UTC (permalink / raw) To: Fabio M. De Francesco; +Cc: outreachy-kernel, linux-staging, linux-kernel On Tue, Apr 06, 2021 at 03:05:56PM +0200, Fabio M. De Francesco wrote: > Remove camelcase in some symbols defined in Hal8723BReg.h. These symbols > are not used anywhere else, therefore this patch does not break the driver. > > Signed-off-by: Fabio M. De Francesco <fmdefrancesco@gmail.com> > --- > drivers/staging/rtl8723bs/hal/Hal8723BReg.h | 16 ++++++++-------- > 1 file changed, 8 insertions(+), 8 deletions(-) If this is "v2", you need to put below the --- line what changed from v1. Please fix up and send a v3. thanks, greg k-h ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Outreachy kernel] [PATCH v2] staging: rtl8723bs: hal: Remove camelcase in Hal8723BReg.h 2021-04-06 14:11 ` Greg KH @ 2021-04-06 14:34 ` FMDF 2021-04-06 14:55 ` Julia Lawall 0 siblings, 1 reply; 5+ messages in thread From: FMDF @ 2021-04-06 14:34 UTC (permalink / raw) To: Greg KH; +Cc: outreachy-kernel, linux-staging, linux-kernel On Tue, Apr 6, 2021 at 4:11 PM Greg KH <gregkh@linuxfoundation.org> wrote: > > On Tue, Apr 06, 2021 at 03:05:56PM +0200, Fabio M. De Francesco wrote: > > Remove camelcase in some symbols defined in Hal8723BReg.h. These symbols > > are not used anywhere else, therefore this patch does not break the driver. > > > > Signed-off-by: Fabio M. De Francesco <fmdefrancesco@gmail.com> > > --- > > drivers/staging/rtl8723bs/hal/Hal8723BReg.h | 16 ++++++++-------- > > 1 file changed, 8 insertions(+), 8 deletions(-) > > If this is "v2", you need to put below the --- line what changed from > v1. It is a v2 only because you made me notice that I forgot to cc linux-staging and linux-kernel. So I sent it again, but probably I shouldn't have changed the version number because nothing else had changed. > Please fix up and send a v3. > No problem at all. I can explain in the patch v3 what I wrote above. May you please confirm that a patch v3 is the correct solution even when nothing changes in the code? Thanks for your help, Fabio > thanks, > > greg k-h ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Outreachy kernel] [PATCH v2] staging: rtl8723bs: hal: Remove camelcase in Hal8723BReg.h 2021-04-06 14:34 ` FMDF @ 2021-04-06 14:55 ` Julia Lawall 2021-04-06 15:05 ` FMDF 0 siblings, 1 reply; 5+ messages in thread From: Julia Lawall @ 2021-04-06 14:55 UTC (permalink / raw) To: FMDF; +Cc: Greg KH, outreachy-kernel, linux-staging, linux-kernel On Tue, 6 Apr 2021, FMDF wrote: > On Tue, Apr 6, 2021 at 4:11 PM Greg KH <gregkh@linuxfoundation.org> wrote: > > > > On Tue, Apr 06, 2021 at 03:05:56PM +0200, Fabio M. De Francesco wrote: > > > Remove camelcase in some symbols defined in Hal8723BReg.h. These symbols > > > are not used anywhere else, therefore this patch does not break the driver. > > > > > > Signed-off-by: Fabio M. De Francesco <fmdefrancesco@gmail.com> > > > --- > > > drivers/staging/rtl8723bs/hal/Hal8723BReg.h | 16 ++++++++-------- > > > 1 file changed, 8 insertions(+), 8 deletions(-) > > > > If this is "v2", you need to put below the --- line what changed from > > v1. > > It is a v2 only because you made me notice that I forgot to cc > linux-staging and linux-kernel. > So I sent it again, but probably I shouldn't have changed the version > number because nothing else had changed. > > > Please fix up and send a v3. > > > > No problem at all. I can explain in the patch v3 what I wrote above. > May you please confirm that a patch v3 is the correct solution even > when nothing changes in the code? When Greg acknowledges your patch, everyone who is concerned with the patch should see it. So he needs to pick up the right version of the patch that has everyone in CC. He can use the version number to choose the most recent one. The version numbers don't appear anywhere once the code is committed. So it's not a problem to move up to the next version for any reason. On the other hand, if you skip a version, it can be a problem, because someone may wonder if they missed some useful information. julia > > Thanks for your help, > > Fabio > > > thanks, > > > > greg k-h > > -- > You received this message because you are subscribed to the Google Groups "outreachy-kernel" group. > To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com. > To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/CAPj211u9MHgtjeZGUPsLxU3HkbJ8cr2EUL0v9HA7LE9-b1uUoA%40mail.gmail.com. > ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Outreachy kernel] [PATCH v2] staging: rtl8723bs: hal: Remove camelcase in Hal8723BReg.h 2021-04-06 14:55 ` Julia Lawall @ 2021-04-06 15:05 ` FMDF 0 siblings, 0 replies; 5+ messages in thread From: FMDF @ 2021-04-06 15:05 UTC (permalink / raw) To: Julia Lawall; +Cc: Greg KH, outreachy-kernel, linux-staging, linux-kernel On Tue, Apr 6, 2021 at 4:55 PM Julia Lawall <julia.lawall@inria.fr> wrote: > > > > On Tue, 6 Apr 2021, FMDF wrote: > > > On Tue, Apr 6, 2021 at 4:11 PM Greg KH <gregkh@linuxfoundation.org> wrote: > > > > > > On Tue, Apr 06, 2021 at 03:05:56PM +0200, Fabio M. De Francesco wrote: > > > > Remove camelcase in some symbols defined in Hal8723BReg.h. These symbols > > > > are not used anywhere else, therefore this patch does not break the driver. > > > > > > > > Signed-off-by: Fabio M. De Francesco <fmdefrancesco@gmail.com> > > > > --- > > > > drivers/staging/rtl8723bs/hal/Hal8723BReg.h | 16 ++++++++-------- > > > > 1 file changed, 8 insertions(+), 8 deletions(-) > > > > > > If this is "v2", you need to put below the --- line what changed from > > > v1. > > > > It is a v2 only because you made me notice that I forgot to cc > > linux-staging and linux-kernel. > > So I sent it again, but probably I shouldn't have changed the version > > number because nothing else had changed. > > > > > Please fix up and send a v3. > > > > > > > No problem at all. I can explain in the patch v3 what I wrote above. > > May you please confirm that a patch v3 is the correct solution even > > when nothing changes in the code? > > When Greg acknowledges your patch, everyone who is concerned with the > patch should see it. So he needs to pick up the right version of the > patch that has everyone in CC. He can use the version number to choose > the most recent one. > > The version numbers don't appear anywhere once the code is committed. So > it's not a problem to move up to the next version for any reason. On the > other hand, if you skip a version, it can be a problem, because someone > may wonder if they missed some useful information. > > julia > Thanks for your clear explanation of these details of the workflow, Fabio > > > > Thanks for your help, > > > > Fabio > > > > > thanks, > > > > > > greg k-h > > > > -- > > You received this message because you are subscribed to the Google Groups "outreachy-kernel" group. > > To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com. > > To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/CAPj211u9MHgtjeZGUPsLxU3HkbJ8cr2EUL0v9HA7LE9-b1uUoA%40mail.gmail.com. > > ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-04-06 15:05 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-04-06 13:05 [Outreachy kernel] [PATCH v2] staging: rtl8723bs: hal: Remove camelcase in Hal8723BReg.h Fabio M. De Francesco 2021-04-06 14:11 ` Greg KH 2021-04-06 14:34 ` FMDF 2021-04-06 14:55 ` Julia Lawall 2021-04-06 15:05 ` FMDF
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox