Commit c4512259 authored by Benjamin Herrenschmidt's avatar Benjamin Herrenschmidt Committed by Linus Torvalds

[PATCH] fix radeonfb "noaccel" command line

Fix proper detection of the "noaccel" command line argument for
new radeonfb so we can boot without acceleration. Useful when
diagnosing an accel-related problem.
parent 4cc25af9
...@@ -2332,7 +2332,7 @@ int __init radeonfb_setup (char *options) ...@@ -2332,7 +2332,7 @@ int __init radeonfb_setup (char *options)
continue; continue;
if (!strncmp(this_opt, "noaccel", 7)) { if (!strncmp(this_opt, "noaccel", 7)) {
radeonfb_noaccel = 1; noaccel = radeonfb_noaccel = 1;
} else if (!strncmp(this_opt, "mirror", 6)) { } else if (!strncmp(this_opt, "mirror", 6)) {
mirror = 1; mirror = 1;
} else if (!strncmp(this_opt, "force_dfp", 9)) { } else if (!strncmp(this_opt, "force_dfp", 9)) {
......
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