diff for duplicates of <50606334.7030902@gmail.com> diff --git a/a/1.txt b/N1/1.txt index 2d36545..98f01c1 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -3,8 +3,8 @@ On 09/19/2012 03:20 AM, Steffen Trumtrar wrote: > The videomode can be either converted to a struct drm_display_mode or a > struct fb_videomode. > -> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> -> Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de> +> Signed-off-by: Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> +> Signed-off-by: Steffen Trumtrar <s.trumtrar-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> > --- > > Hi! @@ -34,7 +34,7 @@ On 09/19/2012 03:20 AM, Steffen Trumtrar wrote: > +++ b/Documentation/devicetree/bindings/video/displaymode > @@ -0,0 +1,74 @@ > +videomode bindings -> +========= +> +================== > + > +Required properties: > + - hactive, vactive: Display resolution @@ -157,8 +157,8 @@ Rob > +/* > + * OF helpers for parsing display modes > + * -> + * Copyright (c) 2012 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix -> + * Copyright (c) 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>, Pengutronix +> + * Copyright (c) 2012 Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>, Pengutronix +> + * Copyright (c) 2012 Steffen Trumtrar <s.trumtrar-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>, Pengutronix > + * > + * This file is released under the GPLv2 > + */ @@ -366,7 +366,7 @@ Rob > + vm->interlaced = of_property_read_bool(mode_np, "interlaced"); > + vm->doublescan = of_property_read_bool(mode_np, "doublescan"); > + -> + if (strcmp(default_mode,mode_np->full_name) = 0) +> + if (strcmp(default_mode,mode_np->full_name) == 0) > + disp->default_mode = disp->num_modes; > + > + disp->modes[disp->num_modes] = vm; @@ -410,7 +410,7 @@ Rob > + > + of_get_video_modes(np, &disp); > + -> + if (index = OF_MODE_SELECTION) +> + if (index == OF_MODE_SELECTION) > + index = disp.default_mode; > + if (dmode) > + videomode_to_display_mode(&disp, dmode, index); @@ -427,7 +427,7 @@ Rob > + > + of_get_video_modes(np, &disp); > + -> + if (index = OF_MODE_SELECTION) +> + if (index == OF_MODE_SELECTION) > + index = disp.default_mode; > + if (fbmode) > + videomode_to_fb_mode(&disp, fbmode, index); @@ -444,8 +444,8 @@ Rob > +++ b/include/linux/of_videomode.h > @@ -0,0 +1,56 @@ > +/* -> + * Copyright 2012 Sascha Hauer <s.hauer@pengutronix.de> -> + * Copyright 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de> +> + * Copyright 2012 Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> +> + * Copyright 2012 Steffen Trumtrar <s.trumtrar-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> > + * > + * OF helpers for videomodes. > + * diff --git a/a/content_digest b/N1/content_digest index c54aab8..5a9b995 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -1,8 +1,8 @@ "ref\01348042843-24673-1-git-send-email-s.trumtrar@pengutronix.de\0" "ref\01348042843-24673-1-git-send-email-s.trumtrar-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org\0" - "From\0Rob Herring <robherring2@gmail.com>\0" + "From\0Rob Herring <robherring2-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>\0" "Subject\0Re: [PATCH v4] of: Add videomode helper\0" - "Date\0Mon, 24 Sep 2012 13:42:12 +0000\0" + "Date\0Mon, 24 Sep 2012 08:42:12 -0500\0" "To\0Steffen Trumtrar <s.trumtrar-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>\0" "Cc\0linux-fbdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org" devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org @@ -17,8 +17,8 @@ "> The videomode can be either converted to a struct drm_display_mode or a\n" "> struct fb_videomode.\n" "> \n" - "> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>\n" - "> Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>\n" + "> Signed-off-by: Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>\n" + "> Signed-off-by: Steffen Trumtrar <s.trumtrar-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>\n" "> ---\n" "> \n" "> Hi!\n" @@ -48,7 +48,7 @@ "> +++ b/Documentation/devicetree/bindings/video/displaymode\n" "> @@ -0,0 +1,74 @@\n" "> +videomode bindings\n" - "> +=========\n" + "> +==================\n" "> +\n" "> +Required properties:\n" "> + - hactive, vactive: Display resolution\n" @@ -171,8 +171,8 @@ "> +/*\n" "> + * OF helpers for parsing display modes\n" "> + *\n" - "> + * Copyright (c) 2012 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix\n" - "> + * Copyright (c) 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>, Pengutronix\n" + "> + * Copyright (c) 2012 Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>, Pengutronix\n" + "> + * Copyright (c) 2012 Steffen Trumtrar <s.trumtrar-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>, Pengutronix\n" "> + *\n" "> + * This file is released under the GPLv2\n" "> + */\n" @@ -380,7 +380,7 @@ "> +\t\tvm->interlaced = of_property_read_bool(mode_np, \"interlaced\");\n" "> +\t\tvm->doublescan = of_property_read_bool(mode_np, \"doublescan\");\n" "> +\n" - "> +\t\tif (strcmp(default_mode,mode_np->full_name) = 0)\n" + "> +\t\tif (strcmp(default_mode,mode_np->full_name) == 0)\n" "> +\t\t\tdisp->default_mode = disp->num_modes;\n" "> +\n" "> +\t\tdisp->modes[disp->num_modes] = vm;\n" @@ -424,7 +424,7 @@ "> +\n" "> +\tof_get_video_modes(np, &disp);\n" "> +\n" - "> +\tif (index = OF_MODE_SELECTION)\n" + "> +\tif (index == OF_MODE_SELECTION)\n" "> +\t\tindex = disp.default_mode;\n" "> +\tif (dmode)\n" "> +\t\tvideomode_to_display_mode(&disp, dmode, index);\n" @@ -441,7 +441,7 @@ "> +\n" "> +\tof_get_video_modes(np, &disp);\n" "> +\n" - "> +\tif (index = OF_MODE_SELECTION)\n" + "> +\tif (index == OF_MODE_SELECTION)\n" "> +\t\tindex = disp.default_mode;\n" "> +\tif (fbmode)\n" "> +\t\tvideomode_to_fb_mode(&disp, fbmode, index);\n" @@ -458,8 +458,8 @@ "> +++ b/include/linux/of_videomode.h\n" "> @@ -0,0 +1,56 @@\n" "> +/*\n" - "> + * Copyright 2012 Sascha Hauer <s.hauer@pengutronix.de>\n" - "> + * Copyright 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>\n" + "> + * Copyright 2012 Sascha Hauer <s.hauer-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>\n" + "> + * Copyright 2012 Steffen Trumtrar <s.trumtrar-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>\n" "> + *\n" "> + * OF helpers for videomodes.\n" "> + *\n" @@ -515,4 +515,4 @@ "> +#endif /* __LINUX_OF_VIDEOMODE_H */\n" > -e0ca223ad1b8872534bb5cc25e372ecc259dae16a9f31bd0b1a53a1d4d4465ea +9b032354b2e423fc588dd9a597a74d68eec0c0be2c3b94bb2c24e0c882a565bd
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.