commit | f80330357284c908e1f67cc8b4d8e56a3e2f6fc6 | [log] [tgz] |
---|---|---|
author | Dave Airlie <airlied@linux.ie> | Wed Sep 16 20:45:09 2009 +1000 |
committer | Dave Airlie <airlied@linux.ie> | Fri Sep 25 13:08:19 2009 +1000 |
tree | a45858e9ed67dce0dc78ccb585babe4b69783b99 | |
parent | 513bcb4655e68706594e45dfa1d4b181500110ba [diff] |
fb: change rules for global rules match. 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>
diff --git a/drivers/video/fbmem.c b/drivers/video/fbmem.c index a85c818..750c71f 100644 --- a/drivers/video/fbmem.c +++ b/drivers/video/fbmem.c
@@ -1789,7 +1789,7 @@ global = 1; } - if (!global && !strstr(options, "fb:")) { + if (!global && !strchr(options, ':')) { fb_mode_option = options; global = 1; }