diff options
| author | Eric Sesterhenn <snakebyte@gmx.de> | 2006-02-28 15:34:49 +0100 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-03-23 14:35:17 -0800 | 
| commit | f5afe8064f3087bead8fea7e32547c2a3ada5fd0 (patch) | |
| tree | de6a9d60aad6ee262c04290d73e414cd92b4ad5d /drivers/pci/hotplug/cpci_hotplug_core.c | |
| parent | 7c8f25da12a3dda46fb730699582895d5fc51287 (diff) | |
| download | olio-linux-3.10-f5afe8064f3087bead8fea7e32547c2a3ada5fd0.tar.xz olio-linux-3.10-f5afe8064f3087bead8fea7e32547c2a3ada5fd0.zip  | |
[PATCH] PCI: kzalloc() conversion in drivers/pci
this patch converts drivers/pci to kzalloc usage.
Compile tested with allyes config.
Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/pci/hotplug/cpci_hotplug_core.c')
| -rw-r--r-- | drivers/pci/hotplug/cpci_hotplug_core.c | 9 | 
1 files changed, 3 insertions, 6 deletions
diff --git a/drivers/pci/hotplug/cpci_hotplug_core.c b/drivers/pci/hotplug/cpci_hotplug_core.c index 30af105271a..037ce4c9168 100644 --- a/drivers/pci/hotplug/cpci_hotplug_core.c +++ b/drivers/pci/hotplug/cpci_hotplug_core.c @@ -248,22 +248,19 @@ cpci_hp_register_bus(struct pci_bus *bus, u8 first, u8 last)  	 * with the pci_hotplug subsystem.  	 */  	for (i = first; i <= last; ++i) { -		slot = kmalloc(sizeof (struct slot), GFP_KERNEL); +		slot = kzalloc(sizeof (struct slot), GFP_KERNEL);  		if (!slot)  			goto error; -		memset(slot, 0, sizeof (struct slot));  		hotplug_slot = -		    kmalloc(sizeof (struct hotplug_slot), GFP_KERNEL); +			kzalloc(sizeof (struct hotplug_slot), GFP_KERNEL);  		if (!hotplug_slot)  			goto error_slot; -		memset(hotplug_slot, 0, sizeof (struct hotplug_slot));  		slot->hotplug_slot = hotplug_slot; -		info = kmalloc(sizeof (struct hotplug_slot_info), GFP_KERNEL); +		info = kzalloc(sizeof (struct hotplug_slot_info), GFP_KERNEL);  		if (!info)  			goto error_hpslot; -		memset(info, 0, sizeof (struct hotplug_slot_info));  		hotplug_slot->info = info;  		name = kmalloc(SLOT_NAME_SIZE, GFP_KERNEL);  |