From: Ken Depro <kenneth.de...@unisys.com>

This patch changes a couple of kzalloc calls to pass the variable name to the
call, rather than the variable struct type.  This is a result of checks
generated during the checkpatch script.

Signed-off-by: Ken Depro <kenneth.de...@unisys.com>
Signed-off-by: Benjamin Romer <benjamin.ro...@unisys.com>
---
 drivers/staging/unisys/virthba/virthba.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/unisys/virthba/virthba.c 
b/drivers/staging/unisys/virthba/virthba.c
index 4e56a0d..83a94c0 100644
--- a/drivers/staging/unisys/virthba/virthba.c
+++ b/drivers/staging/unisys/virthba/virthba.c
@@ -397,7 +397,7 @@ process_disk_notify(struct Scsi_Host *shost, struct 
uiscmdrsp *cmdrsp)
        struct diskaddremove *dar;
        unsigned long flags;
 
-       dar = kzalloc(sizeof(struct diskaddremove), GFP_ATOMIC);
+       dar = kzalloc(sizeof(*dar), GFP_ATOMIC);
        if (dar) {
                dar->add = cmdrsp->disknotify.add;
                dar->shost = shost;
@@ -1051,8 +1051,8 @@ virthba_slave_alloc(struct scsi_device *scsidev)
                    (vdisk->next->lun == scsidev->lun))
                        return 0;
        }
-       tmpvdisk = kzalloc(sizeof(struct virtdisk_info), GFP_ATOMIC);
-       if (!tmpvdisk)
+       tmpvdisk = kzalloc(sizeof(*tmpvdisk), GFP_ATOMIC);
+       if (!tmpvdisk)          /* error allocating */
                return 0;
 
        tmpvdisk->channel = scsidev->channel;
-- 
2.1.0

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to