Commit 1ff97647f066aef72ae68042c9abc4a837a12e6d

Authored by Greg Kroah-Hartman
1 parent 523549254f

char_dev.c: fix up some whitespace errors

Remove some minor whitespace errors (2 trailing spaces, and one space
needed for a comma) to make the file checkpatch.pl clean with the
exception of the exports, which is fine for now.

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

Showing 1 changed file with 3 additions and 3 deletions Side-by-side Diff

... ... @@ -272,7 +272,7 @@
272 272 cd = __register_chrdev_region(major, baseminor, count, name);
273 273 if (IS_ERR(cd))
274 274 return PTR_ERR(cd);
275   -
  275 +
276 276 cdev = cdev_alloc();
277 277 if (!cdev)
278 278 goto out2;
... ... @@ -280,7 +280,7 @@
280 280 cdev->owner = fops->owner;
281 281 cdev->ops = fops;
282 282 kobject_set_name(&cdev->kobj, "%s", name);
283   -
  283 +
284 284 err = cdev_add(cdev, MKDEV(cd->major, baseminor), count);
285 285 if (err)
286 286 goto out;
... ... @@ -405,7 +405,7 @@
405 405 goto out_cdev_put;
406 406  
407 407 if (filp->f_op->open) {
408   - ret = filp->f_op->open(inode,filp);
  408 + ret = filp->f_op->open(inode, filp);
409 409 if (ret)
410 410 goto out_cdev_put;
411 411 }