]> git.karo-electronics.de Git - linux-beck.git/blobdiff - drivers/s390/crypto/ap_bus.c
[S390] zcrypt: Free ap_device if dev_set_name fails.
[linux-beck.git] / drivers / s390 / crypto / ap_bus.c
index 85785807acbce1ee2a0369a1ae4d2b3d8f3e0550..090b32a339c6042863862f8ab8006b7a47352896 100644 (file)
@@ -1111,8 +1111,11 @@ static void ap_scan_bus(struct work_struct *unused)
 
                ap_dev->device.bus = &ap_bus_type;
                ap_dev->device.parent = ap_root_device;
-               dev_set_name(&ap_dev->device, "card%02x",
-                            AP_QID_DEVICE(ap_dev->qid));
+               if (dev_set_name(&ap_dev->device, "card%02x",
+                                AP_QID_DEVICE(ap_dev->qid))) {
+                       kfree(ap_dev);
+                       continue;
+               }
                ap_dev->device.release = ap_device_release;
                rc = device_register(&ap_dev->device);
                if (rc) {