aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/vme
diff options
context:
space:
mode:
authorManohar Vanga <manohar.vanga@cern.ch>2011-08-01 12:20:46 +0200
committerGreg Kroah-Hartman <gregkh@suse.de>2011-08-23 15:05:02 -0700
commit34a678110ac5d2f1b694c8b9df5cccb1a2607721 (patch)
tree9855fe584fa4a960b1be06ef7635452cfcc3ed41 /drivers/staging/vme
parent0428fec32c5fde013cb8223c248972941b18ca59 (diff)
staging: vme_user: change kmalloc+memset to kzalloc
Signed-off-by: Manohar Vanga <manohar.vanga@cern.ch> Acked-by: Martyn Welch <martyn.welch@ge.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/vme')
-rw-r--r--drivers/staging/vme/devices/vme_user.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/staging/vme/devices/vme_user.c b/drivers/staging/vme/devices/vme_user.c
index 91d2cc7bb4c..3cbeb2ada41 100644
--- a/drivers/staging/vme/devices/vme_user.c
+++ b/drivers/staging/vme/devices/vme_user.c
@@ -651,7 +651,7 @@ static int __init vme_user_init(void)
/* Dynamically create the bind table based on module parameters */
- ids = kmalloc(sizeof(struct vme_device_id) * (bus_num + 1), GFP_KERNEL);
+ ids = kzalloc(sizeof(struct vme_device_id) * (bus_num + 1), GFP_KERNEL);
if (ids == NULL) {
printk(KERN_ERR "%s: Unable to allocate ID table\n",
driver_name);
@@ -659,8 +659,6 @@ static int __init vme_user_init(void)
goto err_id;
}
- memset(ids, 0, (sizeof(struct vme_device_id) * (bus_num + 1)));
-
for (i = 0; i < bus_num; i++) {
ids[i].bus = bus[i];
/*