Skip to content

Commit

Permalink
fb: change rules for global rules match.
Browse files Browse the repository at this point in the history
Having a : should be enough 'fb:' isn't really useful
if the fb wants to a kms output ID.

Signed-off-by: Dave Airlie <airlied@redhat.com>
  • Loading branch information
Dave Airlie committed Sep 25, 2009
1 parent 513bcb4 commit f803303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/video/fbmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -1789,7 +1789,7 @@ static int __init video_setup(char *options)
global = 1;
}

if (!global && !strstr(options, "fb:")) {
if (!global && !strchr(options, ':')) {
fb_mode_option = options;
global = 1;
}
Expand Down

0 comments on commit f803303

Please sign in to comment.