projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
43f88d5
)
Staging: udlfb.c: Fix k.alloc switched arguments
author
Joe Perches
<joe@perches.com>
Sun, 31 Oct 2010 22:33:55 +0000
(15:33 -0700)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Tue, 9 Nov 2010 22:05:24 +0000
(14:05 -0800)
Signed-off-by: Joe Perches <joe@perches.com>
Cc: Bernie Thompson <bernie@plugable.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/udlfb/udlfb.c
patch
|
blob
|
history
diff --git
a/drivers/staging/udlfb/udlfb.c
b/drivers/staging/udlfb/udlfb.c
index 5969e848d297ea44951a8c7418e09d74bfd6422e..fed25105970a94d06ca185fa81603f79968d67f8 100644
(file)
--- a/
drivers/staging/udlfb/udlfb.c
+++ b/
drivers/staging/udlfb/udlfb.c
@@
-887,7
+887,7
@@
static int dlfb_ops_open(struct fb_info *info, int user)
struct fb_deferred_io *fbdefio;
- fbdefio = kmalloc(
GFP_KERNEL, sizeof(struct fb_deferred_io)
);
+ fbdefio = kmalloc(
sizeof(struct fb_deferred_io), GFP_KERNEL
);
if (fbdefio) {
fbdefio->delay = DL_DEFIO_WRITE_DELAY;