* Re: [linuxwifi] [PATCH] iwlwifi: Remove use of the deprecacted marco, PTR_RET for the function, iwl_mvm_get_regdomain
[not found] ` <1432428801-2458-1-git-send-email-xerofoify-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2015-05-25 6:02 ` Grumbach, Emmanuel
0 siblings, 0 replies; only message in thread
From: Grumbach, Emmanuel @ 2015-05-25 6:02 UTC (permalink / raw)
To: xerofoify-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
Cc: Coelho, Luciano, kvalo-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org,
netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
ilw-VuQAYsv1563Yd54FQh9/CA@public.gmane.org, Berg, Johannes
On Sat, 2015-05-23 at 20:53 -0400, Nicholas Krause wrote:
> This removes the use of the two deprecated calls to the
> marco, PTR_RET in the function, iwl_mvm_get_regdomain
> and replaces them both with a call to the function,
> PTR_ERR_OR_ZERO.
>
> Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
Applied in our internal tree after a few fixes to the commit message.
Will be pushed out with the regular process.
Thanks.
> ---
> drivers/net/wireless/iwlwifi/mvm/mac80211.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/wireless/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/iwlwifi/mvm/mac80211.c
> index 40265b9..5fb2e8e 100644
> --- a/drivers/net/wireless/iwlwifi/mvm/mac80211.c
> +++ b/drivers/net/wireless/iwlwifi/mvm/mac80211.c
> @@ -319,7 +319,7 @@ struct ieee80211_regdomain *iwl_mvm_get_regdomain(struct wiphy *wiphy,
> resp = iwl_mvm_update_mcc(mvm, alpha2, src_id);
> if (IS_ERR_OR_NULL(resp)) {
> IWL_DEBUG_LAR(mvm, "Could not get update from FW %d\n",
> - PTR_RET(resp));
> + PTR_ERR_OR_ZERO(resp));
> goto out;
> }
>
> @@ -335,7 +335,7 @@ struct ieee80211_regdomain *iwl_mvm_get_regdomain(struct wiphy *wiphy,
> kfree(resp);
> if (IS_ERR_OR_NULL(regd)) {
> IWL_DEBUG_LAR(mvm, "Could not get parse update from FW %d\n",
> - PTR_RET(regd));
> + PTR_ERR_OR_ZERO(regd));
> goto out;
> }
>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2015-05-25 6:02 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1432428801-2458-1-git-send-email-xerofoify@gmail.com>
[not found] ` <1432428801-2458-1-git-send-email-xerofoify-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-05-25 6:02 ` [linuxwifi] [PATCH] iwlwifi: Remove use of the deprecacted marco, PTR_RET for the function, iwl_mvm_get_regdomain Grumbach, Emmanuel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).