Commit 6e6fe422 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

drivers/video/uvesafb.c: don't use gfp_any()

GFP_KERNEL is legal here - we don't need to use gfp_any().

Cc: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Andi Kleen <andi@firstfloor.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent fa7af8b1
...@@ -189,7 +189,7 @@ static int uvesafb_exec(struct uvesafb_ktask *task) ...@@ -189,7 +189,7 @@ static int uvesafb_exec(struct uvesafb_ktask *task)
uvfb_tasks[seq] = task; uvfb_tasks[seq] = task;
mutex_unlock(&uvfb_lock); mutex_unlock(&uvfb_lock);
err = cn_netlink_send(m, 0, gfp_any()); err = cn_netlink_send(m, 0, GFP_KERNEL);
if (err == -ESRCH) { if (err == -ESRCH) {
/* /*
* Try to start the userspace helper if sending * Try to start the userspace helper if sending
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment