summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorFiro Yang <firogm@gmail.com>2015-08-31 20:48:09 (GMT)
committerJames Bottomley <JBottomley@Odin.com>2015-10-27 00:56:24 (GMT)
commitc6cb9b4fd984334b420115e6a504a2ef92cf7f3f (patch)
tree2873bf83363bc50206d3ebfb84b3caead6076865 /drivers
parent290237d2aa832ec418e9abb229f6869aa8b6dbb5 (diff)
downloadlinux-c6cb9b4fd984334b420115e6a504a2ef92cf7f3f.tar.xz
lpfc: Remove unnessary cast
kzalloc() returns a void pointer - no need to cast it in drivers/scsi/lpfc/lpfc_init.c::lpfc_sli_driver_resource_setup() Signed-off-by: Firo Yang <firogm@gmail.com> Signed-off-by: James Smart <james.smart@avagotech.com> Signed-off-by: James Bottomley <JBottomley@Odin.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/scsi/lpfc/lpfc_init.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c
index 1992e74..da9b6fc 100644
--- a/drivers/scsi/lpfc/lpfc_init.c
+++ b/drivers/scsi/lpfc/lpfc_init.c
@@ -4982,8 +4982,7 @@ lpfc_sli_driver_resource_setup(struct lpfc_hba *phba)
}
if (!phba->sli.ring)
- phba->sli.ring = (struct lpfc_sli_ring *)
- kzalloc(LPFC_SLI3_MAX_RING *
+ phba->sli.ring = kzalloc(LPFC_SLI3_MAX_RING *
sizeof(struct lpfc_sli_ring), GFP_KERNEL);
if (!phba->sli.ring)
return -ENOMEM;