aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRasmus Villemoes <linux@rasmusvillemoes.dk>2014-10-21 10:51:43 -0400
committerDavid S. Miller <davem@davemloft.net>2014-10-24 00:41:31 -0400
commit00fd5d94c219839925959d73e266702f08ba283a (patch)
tree5355628bbed52b69683ad28fe0a8415fb0d201d8
parent16704b129bc1e497862e88253da20b13a1b94b33 (diff)
net: typhoon: Remove redundant casts
Both image_data and typhoon_fw->data are const u8*, so the cast to u8* is unnecessary and confusing. Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Acked-by: David Dillow <dave@thedillows.org> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/ethernet/3com/typhoon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/3com/typhoon.c b/drivers/net/ethernet/3com/typhoon.c
index 48775b88bac7..dede43f4ce09 100644
--- a/drivers/net/ethernet/3com/typhoon.c
+++ b/drivers/net/ethernet/3com/typhoon.c
@@ -1285,7 +1285,7 @@ typhoon_request_firmware(struct typhoon *tp)
1285 return err; 1285 return err;
1286 } 1286 }
1287 1287
1288 image_data = (u8 *) typhoon_fw->data; 1288 image_data = typhoon_fw->data;
1289 remaining = typhoon_fw->size; 1289 remaining = typhoon_fw->size;
1290 if (remaining < sizeof(struct typhoon_file_header)) 1290 if (remaining < sizeof(struct typhoon_file_header))
1291 goto invalid_fw; 1291 goto invalid_fw;
@@ -1343,7 +1343,7 @@ typhoon_download_firmware(struct typhoon *tp)
1343 int i; 1343 int i;
1344 int err; 1344 int err;
1345 1345
1346 image_data = (u8 *) typhoon_fw->data; 1346 image_data = typhoon_fw->data;
1347 fHdr = (struct typhoon_file_header *) image_data; 1347 fHdr = (struct typhoon_file_header *) image_data;
1348 1348
1349 /* Cannot just map the firmware image using pci_map_single() as 1349 /* Cannot just map the firmware image using pci_map_single() as