* [PATCH] cciss: Clean up unnessary void pointer cast
@ 2015-04-23 9:59 Firo Yang
0 siblings, 0 replies; only message in thread
From: Firo Yang @ 2015-04-23 9:59 UTC (permalink / raw)
To: don.brace; +Cc: kernel-janitors, linux-scsi, Firo Yang
There's no need to cast the, void *, return value of kmalloc() when
assigning to a pointer variable in drivers/block/cciss_scsi.c::
cciss_scsi_setup.
Signed-off-by: Firo Yang <firogm@gmail.com>
---
drivers/block/cciss_scsi.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/block/cciss_scsi.c b/drivers/block/cciss_scsi.c
index ecd845c..6e17d47 100644
--- a/drivers/block/cciss_scsi.c
+++ b/drivers/block/cciss_scsi.c
@@ -704,8 +704,7 @@ cciss_scsi_setup(ctlr_info_t *h)
struct cciss_scsi_adapter_data_t * shba;
ccissscsi[h->ctlr].ndevices = 0;
- shba = (struct cciss_scsi_adapter_data_t *)
- kmalloc(sizeof(*shba), GFP_KERNEL);
+ shba = kmalloc(sizeof(*shba), GFP_KERNEL);
if (shba == NULL)
return;
shba->scsi_host = NULL;
--
2.1.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-04-23 9:59 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-23 9:59 [PATCH] cciss: Clean up unnessary void pointer cast Firo Yang
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).