The patch titled
fb modedb: Refactor confusing mode_option assignment
has been added to the -mm tree. Its filename is
fb-modedb-refactor-confusing-mode_option-assignment.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: fb modedb: Refactor confusing mode_option assignment
From: Geert Uytterhoeven <[EMAIL PROTECTED]>
Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]>
Cc: "Antonino A. Daplas" <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/video/modedb.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff -puN
drivers/video/modedb.c~fb-modedb-refactor-confusing-mode_option-assignment
drivers/video/modedb.c
--- a/drivers/video/modedb.c~fb-modedb-refactor-confusing-mode_option-assignment
+++ a/drivers/video/modedb.c
@@ -510,7 +510,9 @@ int fb_find_mode(struct fb_var_screeninf
default_bpp = 8;
/* Did the user specify a video mode? */
- if (mode_option || (mode_option = fb_mode_option)) {
+ if (!mode_option)
+ mode_option = fb_mode_option;
+ if (mode_option) {
const char *name = mode_option;
unsigned int namelen = strlen(name);
int res_specified = 0, bpp_specified = 0, refresh_specified = 0;
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
fb-modedb-refactor-confusing-mode_option-assignment.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html