netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Joe Perches <joe@perches.com>
To: netdev@vger.kernel.org
Cc: Shahed Shaikh <shahed.shaikh@qlogic.com>,
	Dept-HSGLinuxNICDev@qlogic.com, linux-kernel@vger.kernel.org
Subject: [PATCH net-next 4/7] qlcnic: Remove casts of pointer to same type
Date: Mon, 24 Mar 2014 13:15:37 -0700	[thread overview]
Message-ID: <ac82455e9d2f0487a3f96c44a41b5557fd09af95.1395692043.git.joe@perches.com> (raw)
In-Reply-To: <cover.1395692043.git.joe@perches.com>

Casting a pointer to a pointer of the same type is pointless,
so remove these unnecessary casts.

Done via coccinelle script:

$ cat typecast_2.cocci
@@
type T;
T *foo;
@@

-	(T *)foo
+	foo

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_init.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_init.c b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_init.c
index ec399b7..2d91975 100644
--- a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_init.c
+++ b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_init.c
@@ -1388,7 +1388,7 @@ static int qlcnic_83xx_copy_fw_file(struct qlcnic_adapter *adapter)
 	addr = (u64)dest;
 
 	ret = qlcnic_83xx_ms_mem_write128(adapter, addr,
-					  (u32 *)p_cache, size / 16);
+					  p_cache, size / 16);
 	if (ret) {
 		dev_err(&adapter->pdev->dev, "MS memory write failed\n");
 		release_firmware(fw);
-- 
1.8.1.2.459.gbcd45b4.dirty

  parent reply	other threads:[~2014-03-24 20:15 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-24 20:15 [PATCH net-next 0/7] drivers/net: Remove pointer casts to same type Joe Perches
2014-03-24 20:15 ` [PATCH net-next 1/7] altera: Remove casts of pointer " Joe Perches
2014-03-24 23:36   ` Vince Bridgers
2014-03-26 19:47   ` David Miller
2014-03-24 20:15 ` [PATCH net-next 2/7] alx: " Joe Perches
2014-03-26 19:47   ` David Miller
2014-03-24 20:15 ` [PATCH net-next 3/7] intel: " Joe Perches
2014-03-24 20:20   ` Jeff Kirsher
2014-03-24 20:15 ` Joe Perches [this message]
2014-03-25  5:50   ` [PATCH net-next 4/7] qlcnic: " Shahed Shaikh
2014-03-26 19:47   ` David Miller
2014-03-24 20:15 ` [PATCH net-next 5/7] carl9170: " Joe Perches
2014-03-24 20:15 ` [PATCH net-next 6/7] mwifiex: " Joe Perches
2014-03-24 22:23   ` Bing Zhao
2014-03-24 20:15 ` [PATCH net-next 7/7] rtlwifi: " Joe Perches

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=ac82455e9d2f0487a3f96c44a41b5557fd09af95.1395692043.git.joe@perches.com \
    --to=joe@perches.com \
    --cc=Dept-HSGLinuxNICDev@qlogic.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=shahed.shaikh@qlogic.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;
as well as URLs for NNTP newsgroup(s).