linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] fb: change rules for global rules match.
@ 2009-09-23  4:42 Dave Airlie
  2009-09-23  6:50 ` Geert Uytterhoeven
  0 siblings, 1 reply; 3+ messages in thread
From: Dave Airlie @ 2009-09-23  4:42 UTC (permalink / raw)
  To: linux-fbdev-devel

From: Dave Airlie <airlied@linux.ie>

Having a : should be enough 'fb:' isn't really useful
if the fb wants to a kms output ID.

Andrew: I can push this via the drm tree if no objections, as
I have a kms patch that requires it.

Signed-off-by: Dave Airlie <airlied@redhat.com>
---
 drivers/video/fbmem.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/video/fbmem.c b/drivers/video/fbmem.c
index a85c818..41a6162 100644
--- a/drivers/video/fbmem.c
+++ b/drivers/video/fbmem.c
@@ -1789,7 +1789,7 @@ static int __init video_setup(char *options)
  		global = 1;
  	}
 
- 	if (!global && !strstr(options, "fb:")) {
+ 	if (!global && !strstr(options, ":")) {
  		fb_mode_option = options;
  		global = 1;
  	}
-- 
1.6.4.4


------------------------------------------------------------------------------
Come build with us! The BlackBerry&reg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] fb: change rules for global rules match.
  2009-09-23  4:42 [PATCH 1/2] fb: change rules for global rules match Dave Airlie
@ 2009-09-23  6:50 ` Geert Uytterhoeven
  0 siblings, 0 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2009-09-23  6:50 UTC (permalink / raw)
  To: Dave Airlie; +Cc: linux-fbdev-devel

On Wed, Sep 23, 2009 at 06:42, Dave Airlie <airlied@gmail.com> wrote:
> From: Dave Airlie <airlied@linux.ie>
>
> Having a : should be enough 'fb:' isn't really useful
> if the fb wants to a kms output ID.
>
> Andrew: I can push this via the drm tree if no objections, as
> I have a kms patch that requires it.
>
> Signed-off-by: Dave Airlie <airlied@redhat.com>
> ---
>  drivers/video/fbmem.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/video/fbmem.c b/drivers/video/fbmem.c
> index a85c818..41a6162 100644
> --- a/drivers/video/fbmem.c
> +++ b/drivers/video/fbmem.c
> @@ -1789,7 +1789,7 @@ static int __init video_setup(char *options)
>                global = 1;
>        }
>
> -       if (!global && !strstr(options, "fb:")) {
> +       if (!global && !strstr(options, ":")) {
>                fb_mode_option = options;
>                global = 1;
>        }

Please don't use strstr() with single-character needle parameter strings.
Use strchr() instead.

Gcc may change such a strstr() to strchr() behind our back, causing
linking errors
on platforms that only provide an inline version of strchr().

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

------------------------------------------------------------------------------
Come build with us! The BlackBerry&reg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf
_______________________________________________
Linux-fbdev-devel mailing list
Linux-fbdev-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-fbdev-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/2] fb: change rules for global rules match.
@ 2009-09-25  2:58 Dave Airlie
  0 siblings, 0 replies; 3+ messages in thread
From: Dave Airlie @ 2009-09-25  2:58 UTC (permalink / raw)
  To: linux-fbdev-devel

From: Dave Airlie <airlied@linux.ie>

Having a : should be enough 'fb:' isn't really useful
if the fb wants to a kms output ID.

Changed to use strchr as per feedback from Geert.

Signed-off-by: Dave Airlie <airlied@redhat.com>
---
 drivers/video/fbmem.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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 @@ static int __init video_setup(char *options)
  		global = 1;
  	}
 
- 	if (!global && !strstr(options, "fb:")) {
+ 	if (!global && !strchr(options, ':')) {
  		fb_mode_option = options;
  		global = 1;
  	}
-- 
1.6.4.2


------------------------------------------------------------------------------
Come build with us! The BlackBerry&reg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-09-25  2:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-23  4:42 [PATCH 1/2] fb: change rules for global rules match Dave Airlie
2009-09-23  6:50 ` Geert Uytterhoeven
  -- strict thread matches above, loose matches on Subject: below --
2009-09-25  2:58 Dave Airlie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).