aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobin C. Harding <me@tobin.cc>2017-02-22 17:12:38 +1100
committerJens Axboe <axboe@fb.com>2017-02-22 11:54:49 -0700
commit48efbfbf6353af15d97ef37216146e550403c773 (patch)
tree493811aebd1b58efb402183a8dec56a1e0617615
parentcciss: Fix checkpatch OPEN_BRACE (diff)
downloadlinux-dev-48efbfbf6353af15d97ef37216146e550403c773.tar.xz
linux-dev-48efbfbf6353af15d97ef37216146e550403c773.zip
cciss: Remove kmalloc cast
Coccinelle emits a warning about casting the return value of kmalloc(). Coccinelle suggests removing the cast as do kerneljanitors. Remove cast from kmalloc() call. Signed-off-by: Tobin C. Harding <me@tobin.cc> Acked-by: Don Brace <don.brace@microsemi.com> Signed-off-by: Jens Axboe <axboe@fb.com>
-rw-r--r--drivers/block/cciss_scsi.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/block/cciss_scsi.c b/drivers/block/cciss_scsi.c
index f5c21f3edca4..01a1f7e24978 100644
--- a/drivers/block/cciss_scsi.c
+++ b/drivers/block/cciss_scsi.c
@@ -647,8 +647,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;