Merge branch 'pci/misc' into next
[linux-2.6-microblaze.git] / drivers / pci / hotplug / ibmphp_core.c
index 92dd882..4985e68 100644 (file)
@@ -603,10 +603,8 @@ int ibmphp_update_slot_info(struct slot *slot_cur)
        u8 mode;
 
        info = kmalloc(sizeof(struct hotplug_slot_info), GFP_KERNEL);
-       if (!info) {
-               err("out of system memory\n");
+       if (!info)
                return -ENOMEM;
-       }
 
        info->power_status = SLOT_PWRGD(slot_cur->status);
        info->attention_status = SLOT_ATTN(slot_cur->status,
@@ -735,14 +733,12 @@ static u8 bus_structure_fixup(u8 busno)
                return 1;
 
        bus = kmalloc(sizeof(*bus), GFP_KERNEL);
-       if (!bus) {
-               err("%s - out of memory\n", __func__);
+       if (!bus)
                return 1;
-       }
+
        dev = kmalloc(sizeof(*dev), GFP_KERNEL);
        if (!dev) {
                kfree(bus);
-               err("%s - out of memory\n", __func__);
                return 1;
        }
 
@@ -1102,7 +1098,6 @@ static int enable_slot(struct hotplug_slot *hs)
        if (!slot_cur->func) {
                /* We cannot do update_slot_info here, since no memory for
                 * kmalloc n.e.ways, and update_slot_info allocates some */
-               err("out of system memory\n");
                rc = -ENOMEM;
                goto error_power;
        }
@@ -1209,7 +1204,6 @@ int ibmphp_do_disable_slot(struct slot *slot_cur)
                /* We need this for functions that were there on bootup */
                slot_cur->func = kzalloc(sizeof(struct pci_func), GFP_KERNEL);
                if (!slot_cur->func) {
-                       err("out of system memory\n");
                        rc = -ENOMEM;
                        goto error;
                }
@@ -1307,7 +1301,6 @@ static int __init ibmphp_init(void)
 
        ibmphp_pci_bus = kmalloc(sizeof(*ibmphp_pci_bus), GFP_KERNEL);
        if (!ibmphp_pci_bus) {
-               err("out of memory\n");
                rc = -ENOMEM;
                goto exit;
        }