public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Dan Carpenter <dan.carpenter@oracle.com>
To: navin patidar <navin.patidar@gmail.com>
Cc: gregkh@linuxfoundation.org, Larry.Finger@lwfinger.net,
	devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 05/28] staging: rtl8188eu: Remove unused function rtl8188eu_ps_func()
Date: Mon, 19 May 2014 13:52:08 +0300	[thread overview]
Message-ID: <20140519105208.GV15585@mwanda> (raw)
In-Reply-To: <1400426361-19596-6-git-send-email-navin.patidar@gmail.com>

On Sun, May 18, 2014 at 08:48:58PM +0530, navin patidar wrote:
> Signed-off-by: navin patidar <navin.patidar@gmail.com>
> ---
>  drivers/staging/rtl8188eu/hal/usb_halinit.c |    8 --------
>  1 file changed, 8 deletions(-)
> 
> diff --git a/drivers/staging/rtl8188eu/hal/usb_halinit.c b/drivers/staging/rtl8188eu/hal/usb_halinit.c
> index 1a83d31..4c3f8c8 100644
> --- a/drivers/staging/rtl8188eu/hal/usb_halinit.c
> +++ b/drivers/staging/rtl8188eu/hal/usb_halinit.c
> @@ -2231,12 +2231,6 @@ static void rtl8188eu_init_default_value(struct adapter *adapt)
>  		haldata->odmpriv.RFCalibrateInfo.ThermalValue_HP[i] = 0;
>  }
>  
> -static u8 rtl8188eu_ps_func(struct adapter *Adapter, enum hal_intf_ps_func efunc_id, u8 *val)
> -{
> -	u8 bResult = true;
> -	return bResult;
> -}
> -
>  void rtl8188eu_set_hal_ops(struct adapter *adapt)
>  {
>  	struct hal_ops	*halfunc = &adapt->HalFunc;
> @@ -2277,7 +2271,5 @@ void rtl8188eu_set_hal_ops(struct adapter *adapt)
>  	halfunc->hal_xmit = &rtl8188eu_hal_xmit;
>  	halfunc->mgnt_xmit = &rtl8188eu_mgnt_xmit;
>  
> -	halfunc->interface_ps_func = &rtl8188eu_ps_func;

No, this is used.  See rtw_hal_intf_ps_func().

drivers/staging/rtl8188eu/hal/hal_intf.c
   210  u8 rtw_hal_intf_ps_func(struct adapter *adapt,
   211                          enum hal_intf_ps_func efunc_id, u8 *val)
   212  {
   213          if (adapt->HalFunc.interface_ps_func)
   214                  return adapt->HalFunc.interface_ps_func(adapt, efunc_id,
   215                                                             val);
   216          return _FAIL;
   217  }

You have changed it to return _FAIL instead of true.  Perhaps that is ok
but you need to explain it in the changelog.

regards,
dan carpenter


  reply	other threads:[~2014-05-19 10:52 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-18 15:18 [PATCH 00/28] staging: rtl8188eu: Remove unnecessary functions navin patidar
2014-05-18 15:18 ` [PATCH 01/28] staging: rtl8188eu: Remove function with empty definition _InitBeaconMaxError() navin patidar
2014-05-18 15:18 ` [PATCH 02/28] staging: rtl8188eu: Remove function with empty definition _InitOperationMode() navin patidar
2014-05-18 15:18 ` [PATCH 03/28] staging: rtl8188eu: Remove function with empty definition _ps_open_RF() navin patidar
2014-05-18 15:18 ` [PATCH 04/28] staging: rtl8188eu: Remove unused function _ps_close_RF() navin patidar
2014-05-18 15:18 ` [PATCH 05/28] staging: rtl8188eu: Remove unused function rtl8188eu_ps_func() navin patidar
2014-05-19 10:52   ` Dan Carpenter [this message]
2014-05-19 15:49     ` navin patidar
2014-05-19 19:04       ` Dan Carpenter
2014-05-20  5:09         ` navin patidar
2014-05-18 15:18 ` [PATCH 06/28] staging:rtl8188eu:Remove funtion Hal_CustomizeByCustomerID_8188EU() navin patidar
2014-05-18 15:19 ` [PATCH 07/28] staging: rtl8188eu: Remove unused function rtl8188e_PHY_ConfigRFWithParaFile() navin patidar
2014-05-18 15:19 ` [PATCH 08/28] staging: rtl8188eu: Remove unused function rtl8192c_PHY_GetHWRegOriginalValue() navin patidar
2014-05-18 15:19 ` [PATCH 09/28] staging: rtl8188eu: Remove unused function PHY_UpdateTxPowerDbm8188E() navin patidar
2014-05-18 15:19 ` [PATCH 10/28] staging:rtl8188eu: Remove unused function phy_DbmToTxPwrIdx() navin patidar
2014-05-18 15:19 ` [PATCH 11/28] staging: rtl8188eu: Remove unused funtion PHY_GetTxPowerLevel8188E() navin patidar
2014-05-18 15:19 ` [PATCH 12/28] staging: rtl8188eu: Remove unused funtion phy_TxPwrIdxToDbm() navin patidar
2014-05-18 15:19 ` [PATCH 13/28] " navin patidar
2014-05-18 15:47   ` navin patidar
2014-05-18 15:19 ` [PATCH 14/28] staging: rtl8188eu: Remove unused structure rf_shadow navin patidar
2014-05-18 15:19 ` [PATCH 15/28] staging: rtl8188eu: Remove unused function rtl8188e_RF_ChangeTxPath() navin patidar
2014-05-18 15:19 ` [PATCH 16/28] staging: rtl8188eu: Remove unused function odm_DIGbyRSSI_LPS() navin patidar
2014-05-18 15:19 ` [PATCH 17/28] staging: rtl8188eu: Remove function odm_DynamicBBPowerSaving() navin patidar
2014-05-18 15:19 ` [PATCH 18/28] staging: rtl8188eu: Remove unused function odm_DynamicBBPowerSavingInit() navin patidar
2014-05-18 15:19 ` [PATCH 19/28] staging:rtl8188eu: Remove unused function iodm_1R_CCA() navin patidar
2014-05-18 15:19 ` [PATCH 20/28] staging: rtl8188eu: Remove unused function odm_RefreshRateAdaptiveMaskMP() navin patidar
2014-05-18 15:19 ` [PATCH 21/28] staging: rtl8188eu: Remove unused function odm_RefreshRateAdaptiveMaskAPADSL() navin patidar
2014-05-18 15:19 ` [PATCH 22/28] staging: rtl8188eu: Remove unused funtion odm_DynamicTxPowerNIC() navin patidar
2014-05-18 15:19 ` [PATCH 23/28] staging: rtl8188eu: Remove unused function odm_SwAntDivChkAntSwitchCallback() navin patidar
2014-05-18 15:19 ` [PATCH 24/28] staging: rtl8188eu: Remove unused function ConvertTo_dB() navin patidar
2014-05-18 15:19 ` [PATCH 25/28] staging: rtl8188eu: Remove function with empty defination ODM_CheckPowerStatus() navin patidar
2014-05-18 15:19 ` [PATCH 26/28] staging: rtl8188eu: Remove unused function DM_DIG_LowerBound_88E() navin patidar
2014-05-18 15:19 ` [PATCH 27/28] staging: rtl8188eu: Remove unused function ODM_DynamicPrimaryCCA_DupRTS() navin patidar
2014-05-18 15:19 ` [PATCH 28/28] staging: rtl8188eu:Remove function with empty defination odm_DynamicPrimaryCCA() navin patidar

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140519105208.GV15585@mwanda \
    --to=dan.carpenter@oracle.com \
    --cc=Larry.Finger@lwfinger.net \
    --cc=devel@driverdev.osuosl.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=navin.patidar@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox