From: Denys Vlasenko Date: Wed, 11 Aug 2010 01:02:30 +0000 (-0700) Subject: drivers/video/fbmem.c: simplify strlen()==0 check in fb_get_options() X-Git-Tag: v2.6.36-rc1~186 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a67ef278e24b1fe5ab8f5e8ef27f9654b91732de;p=profile%2Fivi%2Fkernel-x86-ivi.git drivers/video/fbmem.c: simplify strlen()==0 check in fb_get_options() Replaced !strlen(str) check with !str[0]. Removed the variable which was used solely to store strlen result. Signed-off-by: Denys Vlasenko Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/video/fbmem.c b/drivers/video/fbmem.c index 731fce6..a8500c6 100644 --- a/drivers/video/fbmem.c +++ b/drivers/video/fbmem.c @@ -1786,7 +1786,7 @@ static int ofonly __read_mostly; int fb_get_options(char *name, char **option) { char *opt, *options = NULL; - int opt_len, retval = 0; + int retval = 0; int name_len = strlen(name), i; if (name_len && ofonly && strncmp(name, "offb", 4)) @@ -1796,8 +1796,7 @@ int fb_get_options(char *name, char **option) for (i = 0; i < FB_MAX; i++) { if (video_options[i] == NULL) continue; - opt_len = strlen(video_options[i]); - if (!opt_len) + if (!video_options[i][0]) continue; opt = video_options[i]; if (!strncmp(name, opt, name_len) &&