Hi Valentine,

I can't quite work out the email threading of this patch. My guess is that if I 
cannot work it out
it might get missed by Greg.

Is this a new patch that you made by squashing the three patches previously 
submitted into one? If
so, my suggestion would be to respond to this patch yourself with 'please drop 
this patch' (this lets
maintainers know to not worry further with it). Then submit the patch again 
without the
'In-Reply-To' header i.e send the patch with `git send-email`. You don't need 
v1 in the subject for
version 1, that is implicit.

On Thu, Sep 14, 2017 at 06:34:20PM -0700, Valentine Sinitsyn wrote:
> rtl8188eu contains some spelling errors in comment lines as well as in
> constants. Harmless as they are, they still make the code feel a bit
> unclean, which is not something we want in the kernel.

Nice description.

> Improve this by fixing typos so they won't catch eyes of future driver
> developers anymore.

This would be better in imperative mood i.e "Fix typos so they won't catch the 
eyes of future
developers."

> Signed-off-by: Wolfgang Hartmann <wolfgang.hartm...@siemens.com>
> Signed-off-by: Manish Shrestha <manishshrestha2...@gmail.com>
> Signed-off-by: Valentine Sinitsyn <valentine.sinit...@gmail.com>

 Reviewed-by: Tobin C. Harding <m...@tobin.cc>

> ---
>  drivers/staging/rtl8188eu/core/rtw_efuse.c        | 2 +-
>  drivers/staging/rtl8188eu/core/rtw_mlme.c         | 2 +-
>  drivers/staging/rtl8188eu/hal/odm_HWConfig.c      | 4 ++--
>  drivers/staging/rtl8188eu/include/odm.h           | 2 +-
>  drivers/staging/rtl8188eu/include/rtl8188e_spec.h | 4 ++--
>  5 files changed, 7 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/staging/rtl8188eu/core/rtw_efuse.c 
> b/drivers/staging/rtl8188eu/core/rtw_efuse.c
> index b9bdff0..2c4c8c4 100644
> --- a/drivers/staging/rtl8188eu/core/rtw_efuse.c
> +++ b/drivers/staging/rtl8188eu/core/rtw_efuse.c
> @@ -48,7 +48,7 @@ void Efuse_PowerSwitch(
>       if (PwrState) {
>               usb_write8(pAdapter, REG_EFUSE_ACCESS, EFUSE_ACCESS_ON);
>  
> -             /*  1.2V Power: From VDDON with Power Cut(0x0000h[15]), defualt 
> valid */
> +             /*  1.2V Power: From VDDON with Power Cut(0x0000h[15]), default 
> valid */
>               tmpV16 = usb_read16(pAdapter, REG_SYS_ISO_CTRL);
>               if (!(tmpV16 & PWC_EV12V)) {
>                       tmpV16 |= PWC_EV12V;
> diff --git a/drivers/staging/rtl8188eu/core/rtw_mlme.c 
> b/drivers/staging/rtl8188eu/core/rtw_mlme.c
> index f663e6c..0d2381d 100644
> --- a/drivers/staging/rtl8188eu/core/rtw_mlme.c
> +++ b/drivers/staging/rtl8188eu/core/rtw_mlme.c
> @@ -1329,7 +1329,7 @@ void rtw_cpwm_event_callback(struct adapter *padapter, 
> u8 *pbuf)
>  }
>  
>  /*
> - * _rtw_join_timeout_handler - Timeout/faliure handler for CMD JoinBss
> + * _rtw_join_timeout_handler - Timeout/failure handler for CMD JoinBss
>   * @adapter: pointer to struct adapter structure
>   */
>  void _rtw_join_timeout_handler (unsigned long data)
> diff --git a/drivers/staging/rtl8188eu/hal/odm_HWConfig.c 
> b/drivers/staging/rtl8188eu/hal/odm_HWConfig.c
> index 0555e42..5fcbe56 100644
> --- a/drivers/staging/rtl8188eu/hal/odm_HWConfig.c
> +++ b/drivers/staging/rtl8188eu/hal/odm_HWConfig.c
> @@ -109,7 +109,7 @@ static void odm_RxPhyStatus92CSeries_Parsing(struct 
> odm_dm_struct *dm_odm,
>  
>               dm_odm->PhyDbgInfo.NumQryPhyStatusCCK++;
>               /*  (1)Hardware does not provide RSSI for CCK */
> -             /*  (2)PWDB, Average PWDB cacluated by hardware (for rate 
> adaptive) */
> +             /*  (2)PWDB, Average PWDB calculated by hardware (for rate 
> adaptive) */
>  
>               cck_highpwr = dm_odm->bCckHighPower;
>  
> @@ -223,7 +223,7 @@ static void odm_RxPhyStatus92CSeries_Parsing(struct 
> odm_dm_struct *dm_odm,
>                       pPhyInfo->RxSNR[i] = (s32)(pPhyStaRpt->path_rxsnr[i]/2);
>                       dm_odm->PhyDbgInfo.RxSNRdB[i] = 
> (s32)(pPhyStaRpt->path_rxsnr[i]/2);
>               }
> -             /*  (2)PWDB, Average PWDB cacluated by hardware (for rate 
> adaptive) */
> +             /*  (2)PWDB, Average PWDB calculated by hardware (for rate 
> adaptive) */
>               rx_pwr_all = (((pPhyStaRpt->cck_sig_qual_ofdm_pwdb_all) >> 1) & 
> 0x7f) - 110;
>  
>               PWDB_ALL = odm_QueryRxPwrPercentage(rx_pwr_all);
> diff --git a/drivers/staging/rtl8188eu/include/odm.h 
> b/drivers/staging/rtl8188eu/include/odm.h
> index 4fb3bb0..50e2673 100644
> --- a/drivers/staging/rtl8188eu/include/odm.h
> +++ b/drivers/staging/rtl8188eu/include/odm.h
> @@ -478,7 +478,7 @@ enum odm_operation_mode {
>  
>  /*  ODM_CMNINFO_WM_MODE */
>  enum odm_wireless_mode {
> -     ODM_WM_UNKNOW   = 0x0,
> +     ODM_WM_UNKNOWN  = 0x0,
>       ODM_WM_B        = BIT(0),
>       ODM_WM_G        = BIT(1),
>       ODM_WM_A        = BIT(2),
> diff --git a/drivers/staging/rtl8188eu/include/rtl8188e_spec.h 
> b/drivers/staging/rtl8188eu/include/rtl8188e_spec.h
> index c93e19d..c33d312 100644
> --- a/drivers/staging/rtl8188eu/include/rtl8188e_spec.h
> +++ b/drivers/staging/rtl8188eu/include/rtl8188e_spec.h
> @@ -15,7 +15,7 @@
>  #ifndef __RTL8188E_SPEC_H__
>  #define __RTL8188E_SPEC_H__
>  
> -/*        8192C Regsiter offset definition */
> +/*        8192C Register offset definition */
>  
>  #define              HAL_PS_TIMER_INT_DELAY  50      /*   50 microseconds */
>  #define              HAL_92C_NAV_UPPER_UNIT  128     /*  micro-second */
> @@ -701,7 +701,7 @@ Current IOREG MAP
>  
>  #define REG_USB_HRPWM                        0xFE58
>  #define REG_USB_HCPWM                        0xFE57
> -/*        8192C Regsiter Bit and Content definition */
> +/*        8192C Register Bit and Content definition */
>  /*   0x0000h ~ 0x00FFh       System Configuration */
>  
>  /* 2 SYS_ISO_CTRL */
> -- 
> 2.7.4
> 

Patch looks good to me.

Good work,
Tobin.
_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to