Skip to content

Commit

Permalink
Staging: udlfb: fix coding style issues
Browse files Browse the repository at this point in the history
This is a patch to the file udlfb.c that fixes a missing KERN_INFO and
removes one whitespace before a newline.

Signed-off-by: Soeren Moeller <soerenmoeller2001@gmail.com>
Cc: Bernie Thompson <bernie@plugable.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Soeren Moeller authored and Greg Kroah-Hartman committed May 14, 2010
1 parent fdd2d93 commit b5a2104
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/udlfb/udlfb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1438,7 +1438,7 @@ static int __init dlfb_module_init(void)
if (res)
err("usb_register failed. Error number %d", res);

printk("VMODES initialized\n");
printk(KERN_INFO "VMODES initialized\n");

return res;
}
Expand Down Expand Up @@ -1567,7 +1567,7 @@ static int dlfb_alloc_urb_list(struct dlfb_data *dev, int count, size_t size)

kref_get(&dev->kref); /* released in free_render_urbs() */

dl_notice("allocated %d %d byte urbs \n", i, (int) size);
dl_notice("allocated %d %d byte urbs\n", i, (int) size);

return i;
}
Expand Down

0 comments on commit b5a2104

Please sign in to comment.