staging/unisys/visorutil/procobjecttree: Code Style
authorRicardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Mon, 2 Feb 2015 18:26:32 +0000 (19:26 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 7 Feb 2015 09:18:38 +0000 (17:18 +0800)
Lines should not be over 80 characters

Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
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;