diff options
author | Yan Burman <burman.yan@gmail.com> | 2006-12-12 13:54:52 -0500 |
---|---|---|
committer | Adrian Bunk <bunk@stusta.de> | 2006-12-12 13:54:52 -0500 |
commit | 0268bd0a807fc5cc41ced9cce95efe1b43e8fa52 (patch) | |
tree | a7561807de0d3048091bb67de77a55c8f4fc9c15 /arch/um | |
parent | 47c6bf7760bb8021bf7782f05bcd3b9f73ed2c2e (diff) |
um: replace kmalloc+memset with kzalloc
Replace kmalloc+memset with kzalloc
Signed-off-by: Yan Burman <burman.yan@gmail.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/drivers/net_kern.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/um/drivers/net_kern.c b/arch/um/drivers/net_kern.c index 286bc0b3207f..b2e9762e13c5 100644 --- a/arch/um/drivers/net_kern.c +++ b/arch/um/drivers/net_kern.c | |||
@@ -334,13 +334,12 @@ static int eth_configure(int n, void *init, char *mac, | |||
334 | size = transport->private_size + sizeof(struct uml_net_private) + | 334 | size = transport->private_size + sizeof(struct uml_net_private) + |
335 | sizeof(((struct uml_net_private *) 0)->user); | 335 | sizeof(((struct uml_net_private *) 0)->user); |
336 | 336 | ||
337 | device = kmalloc(sizeof(*device), GFP_KERNEL); | 337 | device = kzalloc(sizeof(*device), GFP_KERNEL); |
338 | if (device == NULL) { | 338 | if (device == NULL) { |
339 | printk(KERN_ERR "eth_configure failed to allocate uml_net\n"); | 339 | printk(KERN_ERR "eth_configure failed to allocate uml_net\n"); |
340 | return(1); | 340 | return(1); |
341 | } | 341 | } |
342 | 342 | ||
343 | memset(device, 0, sizeof(*device)); | ||
344 | INIT_LIST_HEAD(&device->list); | 343 | INIT_LIST_HEAD(&device->list); |
345 | device->index = n; | 344 | device->index = n; |
346 | 345 | ||