All of lore.kernel.org
 help / color / mirror / Atom feed
From: yanjun.zhu@linux.dev <yanjun.zhu@linux.dev>
To: intel-wired-lan@osuosl.org
Subject: [Intel-wired-lan] [PATCH 1/1] ice: remove the unused function ice_aq_nvm_update_empr
Date: Thu, 21 Oct 2021 02:53:30 +0000	[thread overview]
Message-ID: <a3770ad64d2232cbdc19f86bc4e42a16@linux.dev> (raw)
In-Reply-To: <adf52e0ca3fbe0c9726f283a9690bd335afbf3a6.camel@intel.com>

October 21, 2021 2:49 AM, "Nguyen, Anthony L" <anthony.l.nguyen@intel.com> wrote:

> On Tue, 2021-10-19 at 05:17 -0400, yanjun.zhu at linux.dev wrote:
> 
>> From: Zhu Yanjun <yanjun.zhu@linux.dev>
>> 
>> The function ice_aq_nvm_update_empr is not used, so remove it.
> 
> Thanks for the patch, but there is another one coming soon that will be
> using this function[1]. I'd prefer to keep this to save us from another
> patch reintroducing it in the near future.

Got it.

Zhu Yanjun

> 
> Thanks,
> Tony
> 
> [1] https://patchwork.ozlabs.org/project/intel-wired-
> lan/patch/20211019215423.3383750-1-jacob.e.keller at intel.com/
> 
>> Signed-off-by: Zhu Yanjun <yanjun.zhu@linux.dev>
>> ---
>> drivers/net/ethernet/intel/ice/ice_nvm.c | 16 ----------------
>> drivers/net/ethernet/intel/ice/ice_nvm.h |  1 -
>> 2 files changed, 17 deletions(-)
>> 
>> diff --git a/drivers/net/ethernet/intel/ice/ice_nvm.c
>> b/drivers/net/ethernet/intel/ice/ice_nvm.c
>> index fee37a5844cf..bad374bd7ab3 100644
>> --- a/drivers/net/ethernet/intel/ice/ice_nvm.c
>> +++ b/drivers/net/ethernet/intel/ice/ice_nvm.c
>> @@ -1106,22 +1106,6 @@ enum ice_status ice_nvm_write_activate(struct
>> ice_hw *hw, u8 cmd_flags)
>> return ice_aq_send_cmd(hw, &desc, NULL, 0, NULL);
>> }
>> 
>> -/**
>> - * ice_aq_nvm_update_empr
>> - * @hw: pointer to the HW struct
>> - *
>> - * Update empr (0x0709). This command allows SW to
>> - * request an EMPR to activate new FW.
>> - */
>> -enum ice_status ice_aq_nvm_update_empr(struct ice_hw *hw)
>> -{
>> -       struct ice_aq_desc desc;
>> -
>> -       ice_fill_dflt_direct_cmd_desc(&desc,
>> ice_aqc_opc_nvm_update_empr);
>> -
>> -       return ice_aq_send_cmd(hw, &desc, NULL, 0, NULL);
>> -}
>> -
>> /* ice_nvm_set_pkg_data
>> * @hw: pointer to the HW struct
>> * @del_pkg_data_flag: If is set then the current pkg_data store by
>> FW
>> diff --git a/drivers/net/ethernet/intel/ice/ice_nvm.h
>> b/drivers/net/ethernet/intel/ice/ice_nvm.h
>> index c6f05f43d593..925225905491 100644
>> --- a/drivers/net/ethernet/intel/ice/ice_nvm.h
>> +++ b/drivers/net/ethernet/intel/ice/ice_nvm.h
>> @@ -39,7 +39,6 @@ enum ice_status
>> ice_aq_erase_nvm(struct ice_hw *hw, u16 module_typeid, struct
>> ice_sq_cd *cd);
>> enum ice_status ice_nvm_validate_checksum(struct ice_hw *hw);
>> enum ice_status ice_nvm_write_activate(struct ice_hw *hw, u8
>> cmd_flags);
>> -enum ice_status ice_aq_nvm_update_empr(struct ice_hw *hw);
>> enum ice_status
>> ice_nvm_set_pkg_data(struct ice_hw *hw, bool del_pkg_data_flag, u8
>> *data,
>> u16 length, struct ice_sq_cd *cd);

WARNING: multiple messages have this Message-ID (diff)
From: yanjun.zhu@linux.dev
To: "Nguyen, Anthony L" <anthony.l.nguyen@intel.com>,
	"Keller, Jacob E" <jacob.e.keller@intel.com>,
	netdev@vger.kernel.org, davem@davemloft.net, "Brandeburg,
	Jesse" <jesse.brandeburg@intel.com>,
	intel-wired-lan@lists.osuosl.org, kuba@kernel.org
Subject: Re: [PATCH 1/1] ice: remove the unused function ice_aq_nvm_update_empr
Date: Thu, 21 Oct 2021 02:53:30 +0000	[thread overview]
Message-ID: <a3770ad64d2232cbdc19f86bc4e42a16@linux.dev> (raw)
In-Reply-To: <adf52e0ca3fbe0c9726f283a9690bd335afbf3a6.camel@intel.com>

October 21, 2021 2:49 AM, "Nguyen, Anthony L" <anthony.l.nguyen@intel.com> wrote:

> On Tue, 2021-10-19 at 05:17 -0400, yanjun.zhu@linux.dev wrote:
> 
>> From: Zhu Yanjun <yanjun.zhu@linux.dev>
>> 
>> The function ice_aq_nvm_update_empr is not used, so remove it.
> 
> Thanks for the patch, but there is another one coming soon that will be
> using this function[1]. I'd prefer to keep this to save us from another
> patch reintroducing it in the near future.

Got it.

Zhu Yanjun

> 
> Thanks,
> Tony
> 
> [1] https://patchwork.ozlabs.org/project/intel-wired-
> lan/patch/20211019215423.3383750-1-jacob.e.keller@intel.com/
> 
>> Signed-off-by: Zhu Yanjun <yanjun.zhu@linux.dev>
>> ---
>> drivers/net/ethernet/intel/ice/ice_nvm.c | 16 ----------------
>> drivers/net/ethernet/intel/ice/ice_nvm.h |  1 -
>> 2 files changed, 17 deletions(-)
>> 
>> diff --git a/drivers/net/ethernet/intel/ice/ice_nvm.c
>> b/drivers/net/ethernet/intel/ice/ice_nvm.c
>> index fee37a5844cf..bad374bd7ab3 100644
>> --- a/drivers/net/ethernet/intel/ice/ice_nvm.c
>> +++ b/drivers/net/ethernet/intel/ice/ice_nvm.c
>> @@ -1106,22 +1106,6 @@ enum ice_status ice_nvm_write_activate(struct
>> ice_hw *hw, u8 cmd_flags)
>> return ice_aq_send_cmd(hw, &desc, NULL, 0, NULL);
>> }
>> 
>> -/**
>> - * ice_aq_nvm_update_empr
>> - * @hw: pointer to the HW struct
>> - *
>> - * Update empr (0x0709). This command allows SW to
>> - * request an EMPR to activate new FW.
>> - */
>> -enum ice_status ice_aq_nvm_update_empr(struct ice_hw *hw)
>> -{
>> -       struct ice_aq_desc desc;
>> -
>> -       ice_fill_dflt_direct_cmd_desc(&desc,
>> ice_aqc_opc_nvm_update_empr);
>> -
>> -       return ice_aq_send_cmd(hw, &desc, NULL, 0, NULL);
>> -}
>> -
>> /* ice_nvm_set_pkg_data
>> * @hw: pointer to the HW struct
>> * @del_pkg_data_flag: If is set then the current pkg_data store by
>> FW
>> diff --git a/drivers/net/ethernet/intel/ice/ice_nvm.h
>> b/drivers/net/ethernet/intel/ice/ice_nvm.h
>> index c6f05f43d593..925225905491 100644
>> --- a/drivers/net/ethernet/intel/ice/ice_nvm.h
>> +++ b/drivers/net/ethernet/intel/ice/ice_nvm.h
>> @@ -39,7 +39,6 @@ enum ice_status
>> ice_aq_erase_nvm(struct ice_hw *hw, u16 module_typeid, struct
>> ice_sq_cd *cd);
>> enum ice_status ice_nvm_validate_checksum(struct ice_hw *hw);
>> enum ice_status ice_nvm_write_activate(struct ice_hw *hw, u8
>> cmd_flags);
>> -enum ice_status ice_aq_nvm_update_empr(struct ice_hw *hw);
>> enum ice_status
>> ice_nvm_set_pkg_data(struct ice_hw *hw, bool del_pkg_data_flag, u8
>> *data,
>> u16 length, struct ice_sq_cd *cd);

  reply	other threads:[~2021-10-21  2:53 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-19  9:17 [Intel-wired-lan] [PATCH 1/1] ice: remove the unused function ice_aq_nvm_update_empr yanjun.zhu
2021-10-19  9:17 ` yanjun.zhu
2021-10-19 15:30 ` [Intel-wired-lan] " Jesse Brandeburg
2021-10-19 15:30   ` Jesse Brandeburg
2021-10-19 23:39   ` [Intel-wired-lan] " Yanjun Zhu
2021-10-19 23:39     ` Yanjun Zhu
2021-10-20 18:49 ` [Intel-wired-lan] " Nguyen, Anthony L
2021-10-20 18:49   ` Nguyen, Anthony L
2021-10-21  2:53   ` yanjun.zhu [this message]
2021-10-21  2:53     ` yanjun.zhu

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=a3770ad64d2232cbdc19f86bc4e42a16@linux.dev \
    --to=yanjun.zhu@linux.dev \
    --cc=intel-wired-lan@osuosl.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.