staging/unisys/visorutil/procobjecttree: Code Style
[deliverable/linux.git] / drivers / staging / unisys / visorutil / procobjecttree.c
index 195772d22c9edcd2cf2aa323a934883accff291c..637c5ef1a76724231dc40208bb2362faf02542c9 100644 (file)
@@ -260,9 +260,9 @@ MYPROCOBJECT *visor_proc_CreateObject(MYPROCTYPE *type,
                ERRDRV("out of memory\n");
                goto Away;
        }
-       obj->procDirProperties =
-               kzalloc((type->nProperties + 1) * sizeof(struct proc_dir_entry *),
-                       GFP_KERNEL | __GFP_NORETRY);
+       obj->procDirProperties = kzalloc((type->nProperties + 1) *
+                                        sizeof(struct proc_dir_entry *),
+                                        GFP_KERNEL | __GFP_NORETRY);
        if (obj->procDirProperties == NULL) {
                ERRDRV("out of memory\n");
                goto Away;
@@ -276,8 +276,8 @@ MYPROCOBJECT *visor_proc_CreateObject(MYPROCTYPE *type,
                        /* only create properties that have names */
                        obj->procDirProperties[i] =
                                createProcFile(type->propertyNames[i],
-                                              obj->procDir, &proc_fops,
-                                              &obj->procDirPropertyContexts[i]);
+                                       obj->procDir, &proc_fops,
+                                       &obj->procDirPropertyContexts[i]);
                        if (obj->procDirProperties[i] == NULL) {
                                rc = NULL;
                                goto Away;
This page took 0.033303 seconds and 5 git commands to generate.