public inbox for linux-next@vger.kernel.org 
 help / color / mirror / Atom feed
From: Bixuan Cui <cuibixuan@huawei•com>
To: <davem@davemloft•net>, <kuba@kernel•org>
Cc: <jeffrey.t.kirsher@intel•com>, <intel-wired-lan@lists•osuosl.org>,
	<netdev@vger•kernel.org>, <linux-next@vger•kernel.org>
Subject: [PATCH -next] net: ice: Fix pointer cast warnings
Date: Fri, 31 Jul 2020 18:57:21 +0800	[thread overview]
Message-ID: <20200731105721.18511-1-cuibixuan@huawei.com> (raw)

pointers should be casted to unsigned long to avoid
-Wpointer-to-int-cast warnings:

drivers/net/ethernet/intel/ice/ice_flow.h:197:33: warning:
    cast from pointer to integer of different size

Signed-off-by: Bixuan Cui <cuibixuan@huawei•com>
---
 drivers/net/ethernet/intel/ice/ice_flow.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/intel/ice/ice_flow.h b/drivers/net/ethernet/intel/ice/ice_flow.h
index 3913da2116d2..b9a5c208e484 100644
--- a/drivers/net/ethernet/intel/ice/ice_flow.h
+++ b/drivers/net/ethernet/intel/ice/ice_flow.h
@@ -194,7 +194,7 @@ struct ice_flow_entry {
 	u16 entry_sz;
 };

-#define ICE_FLOW_ENTRY_HNDL(e)	((u64)e)
+#define ICE_FLOW_ENTRY_HNDL(e)	((uintptr_t)e)
 #define ICE_FLOW_ENTRY_PTR(h)	((struct ice_flow_entry *)(h))

 struct ice_flow_prof {
--
2.17.1


             reply	other threads:[~2020-07-31  9:50 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-31 10:57 Bixuan Cui [this message]
2020-07-31 10:07 ` [PATCH -next v2] net: ice: Fix pointer cast warnings Bixuan Cui
2020-08-26 23:22   ` Brown, Aaron F
2020-09-23  1:58     ` [PATCH v3] " Bixuan Cui
2020-09-23  1:44   ` [PATCH -next v2] " Bixuan Cui

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=20200731105721.18511-1-cuibixuan@huawei.com \
    --to=cuibixuan@huawei$(echo .)com \
    --cc=davem@davemloft$(echo .)net \
    --cc=intel-wired-lan@lists$(echo .)osuosl.org \
    --cc=jeffrey.t.kirsher@intel$(echo .)com \
    --cc=kuba@kernel$(echo .)org \
    --cc=linux-next@vger$(echo .)kernel.org \
    --cc=netdev@vger$(echo .)kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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