diff for duplicates of <20150210080614.GA8438@linuxteamdev.amer.dell.com> diff --git a/a/1.txt b/N1/1.txt index 5001ec1..c99423b 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -16,12 +16,12 @@ This one I have checked with checkpatch.pl it don't has any warning or comment. I am sending these patches with mutt. ->From 8ce800b5f5a048109014994bcfc4fae2ef9cc271 Mon Sep 17 00:00:00 2001 -From: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org> +From 8ce800b5f5a048109014994bcfc4fae2ef9cc271 Mon Sep 17 00:00:00 2001 +From: Parmeshwr Prasad <parmeshwr_prasad@dell.com> Date: Tue, 10 Feb 2015 00:33:30 -0500 Subject: [PATCH] Trival patch: improved indentation in efifb.c file -Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org> +Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad@dell.com> --- drivers/video/fbdev/efifb.c | 128 +++++++++++++++++++++++--------------------- 1 file changed, 68 insertions(+), 60 deletions(-) @@ -79,13 +79,11 @@ unsigned green, + red >>= 8; green >>= 8; - blue >>= 8; -- ((u32 *)(info->pseudo_palette))[regno] = -- (red << info->var.red.offset) | +- ((u32 *)(info->pseudo_palette))[regno] - (red << info->var.red.offset) | - (green << info->var.green.offset) | - (blue << info->var.blue.offset); + blue >>= 8; -+ ((u32 *) (info->pseudo_palette))[regno] = -+ (red << info->var.red.offset) | ++ ((u32 *) (info->pseudo_palette))[regno] + (red << info->var.red.offset) | + (green << info->var.green.offset) | + (blue << info->var.blue.offset); } @@ -122,46 +120,30 @@ unsigned green, if (efifb_dmi_list[i].base != 0 && - !strcmp(this_opt, efifb_dmi_list[i].optname)) { -- screen_info.lfb_base = -efifb_dmi_list[i].base; -- screen_info.lfb_linelength = -efifb_dmi_list[i].stride; -- screen_info.lfb_width = -efifb_dmi_list[i].width; -- screen_info.lfb_height = -efifb_dmi_list[i].height; +- screen_info.lfb_base efifb_dmi_list[i].base; +- screen_info.lfb_linelength efifb_dmi_list[i].stride; +- screen_info.lfb_width efifb_dmi_list[i].width; +- screen_info.lfb_height efifb_dmi_list[i].height; + !strcmp(this_opt, + efifb_dmi_list[i].optname)) { -+ screen_info.lfb_base = -+ efifb_dmi_list[i].base; -+ screen_info.lfb_linelength = -+ efifb_dmi_list[i].stride; -+ screen_info.lfb_width = -+ efifb_dmi_list[i].width; -+ screen_info.lfb_height = -+ efifb_dmi_list[i].height; ++ screen_info.lfb_base + efifb_dmi_list[i].base; ++ screen_info.lfb_linelength + efifb_dmi_list[i].stride; ++ screen_info.lfb_width + efifb_dmi_list[i].width; ++ screen_info.lfb_height + efifb_dmi_list[i].height; } } if (!strncmp(this_opt, "base:", 5)) -- screen_info.lfb_base = -simple_strtoul(this_opt+5, NULL, 0); -+ screen_info.lfb_base = -+ simple_strtoul(this_opt + 5, NULL, 0); +- screen_info.lfb_base simple_strtoul(this_opt+5, NULL, 0); ++ screen_info.lfb_base + simple_strtoul(this_opt + 5, NULL, 0); else if (!strncmp(this_opt, "stride:", 7)) -- screen_info.lfb_linelength = -simple_strtoul(this_opt+7, NULL, 0) * 4; -+ screen_info.lfb_linelength = -+ simple_strtoul(this_opt + 7, NULL, 0) * 4; +- screen_info.lfb_linelength simple_strtoul(this_opt+7, NULL, 0) * 4; ++ screen_info.lfb_linelength + simple_strtoul(this_opt + 7, NULL, 0) * 4; else if (!strncmp(this_opt, "height:", 7)) -- screen_info.lfb_height = -simple_strtoul(this_opt+7, NULL, 0); -+ screen_info.lfb_height = -+ simple_strtoul(this_opt + 7, NULL, 0); +- screen_info.lfb_height simple_strtoul(this_opt+7, NULL, 0); ++ screen_info.lfb_height + simple_strtoul(this_opt + 7, NULL, 0); else if (!strncmp(this_opt, "width:", 6)) -- screen_info.lfb_width = -simple_strtoul(this_opt+6, NULL, 0); -+ screen_info.lfb_width = -+ simple_strtoul(this_opt + 6, NULL, 0); +- screen_info.lfb_width simple_strtoul(this_opt+6, NULL, 0); ++ screen_info.lfb_width + simple_strtoul(this_opt + 6, NULL, 0); } } @@ -189,8 +171,7 @@ simple_strtoul(this_opt+6, NULL, 0); - info->screen_base = ioremap_wc(efifb_fix.smem_start, efifb_fix.smem_len); -+ info->screen_base = -+ ioremap_wc(efifb_fix.smem_start, efifb_fix.smem_len); ++ info->screen_base + ioremap_wc(efifb_fix.smem_start, efifb_fix.smem_len); if (!info->screen_base) { printk(KERN_ERR "efifb: abort, cannot ioremap video memory " - "0x%x @ 0x%lx\n", @@ -281,7 +262,7 @@ On Mon, Feb 09, 2015 at 08:24:50AM -0600, Lad, Prabhakar wrote: > Thanks for the patch. > > On Mon, Feb 9, 2015 at 12:55 PM, Parmeshwr Prasad -> <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org> wrote: +> <parmeshwr_prasad@dell.com> wrote: > > Hi All, > > > > Please review this patch. @@ -292,12 +273,12 @@ On Mon, Feb 09, 2015 at 08:24:50AM -0600, Lad, Prabhakar wrote: > > > > > > From c49139fac1d15fe2da80d06e2a79eb8be7c079a7 Mon Sep 17 00:00:00 2001 -> > From: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org> +> > From: Parmeshwr Prasad <parmeshwr_prasad@dell.com> > > Date: Mon, 9 Feb 2015 07:33:59 -0500 > > Subject: [PATCH] Trival patch: improved indentation, and removed some ERROR > > from code > > -> > Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org> +> > Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad@dell.com> > > --- > > 1: did you use git to send this patch ? diff --git a/a/content_digest b/N1/content_digest index 29c2ef1..733a355 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -1,9 +1,9 @@ "ref\020150209125548.GA27277@linuxteamdev.amer.dell.com\0" "ref\0CA+V-a8todzzHHTSaJ1UzT+1sXrdbNaaBah66gFr2kEigNBhQYw@mail.gmail.com\0" "ref\0CA+V-a8todzzHHTSaJ1UzT+1sXrdbNaaBah66gFr2kEigNBhQYw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org\0" - "From\0Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org>\0" + "From\0Parmeshwr Prasad <parmeshwr_prasad@dell.com>\0" "Subject\0Re: [PATCH1/2] Trivial patch in efifb.c to solve common indent issue and indent error\0" - "Date\0Tue, 10 Feb 2015 03:06:24 -0500\0" + "Date\0Tue, 10 Feb 2015 08:06:24 +0000\0" "To\0Lad" " Prabhakar <prabhakar.csengg-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>\0" "Cc\0pjones-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org <pjones-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>" @@ -32,12 +32,12 @@ "\n" "I am sending these patches with mutt.\n" "\n" - ">From 8ce800b5f5a048109014994bcfc4fae2ef9cc271 Mon Sep 17 00:00:00 2001\n" - "From: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org>\n" + "From 8ce800b5f5a048109014994bcfc4fae2ef9cc271 Mon Sep 17 00:00:00 2001\n" + "From: Parmeshwr Prasad <parmeshwr_prasad@dell.com>\n" "Date: Tue, 10 Feb 2015 00:33:30 -0500\n" "Subject: [PATCH] Trival patch: improved indentation in efifb.c file\n" "\n" - "Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org>\n" + "Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad@dell.com>\n" "---\n" " drivers/video/fbdev/efifb.c | 128 +++++++++++++++++++++++---------------------\n" " 1 file changed, 68 insertions(+), 60 deletions(-)\n" @@ -95,13 +95,11 @@ "+ red >>= 8;\n" " green >>= 8;\n" "- blue >>= 8;\n" - "- ((u32 *)(info->pseudo_palette))[regno] =\n" - "- (red << info->var.red.offset) |\n" + "- ((u32 *)(info->pseudo_palette))[regno] - (red << info->var.red.offset) |\n" "- (green << info->var.green.offset) |\n" "- (blue << info->var.blue.offset);\n" "+ blue >>= 8;\n" - "+ ((u32 *) (info->pseudo_palette))[regno] =\n" - "+ (red << info->var.red.offset) |\n" + "+ ((u32 *) (info->pseudo_palette))[regno] + (red << info->var.red.offset) |\n" "+ (green << info->var.green.offset) |\n" "+ (blue << info->var.blue.offset);\n" " }\n" @@ -138,46 +136,30 @@ " if (efifb_dmi_list[i].base != 0 &&\n" "- !strcmp(this_opt,\n" "efifb_dmi_list[i].optname)) {\n" - "- screen_info.lfb_base =\n" - "efifb_dmi_list[i].base;\n" - "- screen_info.lfb_linelength =\n" - "efifb_dmi_list[i].stride;\n" - "- screen_info.lfb_width =\n" - "efifb_dmi_list[i].width;\n" - "- screen_info.lfb_height =\n" - "efifb_dmi_list[i].height;\n" + "- screen_info.lfb_base efifb_dmi_list[i].base;\n" + "- screen_info.lfb_linelength efifb_dmi_list[i].stride;\n" + "- screen_info.lfb_width efifb_dmi_list[i].width;\n" + "- screen_info.lfb_height efifb_dmi_list[i].height;\n" "+ !strcmp(this_opt,\n" "+ efifb_dmi_list[i].optname)) {\n" - "+ screen_info.lfb_base =\n" - "+ efifb_dmi_list[i].base;\n" - "+ screen_info.lfb_linelength =\n" - "+ efifb_dmi_list[i].stride;\n" - "+ screen_info.lfb_width =\n" - "+ efifb_dmi_list[i].width;\n" - "+ screen_info.lfb_height =\n" - "+ efifb_dmi_list[i].height;\n" + "+ screen_info.lfb_base + efifb_dmi_list[i].base;\n" + "+ screen_info.lfb_linelength + efifb_dmi_list[i].stride;\n" + "+ screen_info.lfb_width + efifb_dmi_list[i].width;\n" + "+ screen_info.lfb_height + efifb_dmi_list[i].height;\n" " }\n" " }\n" " if (!strncmp(this_opt, \"base:\", 5))\n" - "- screen_info.lfb_base =\n" - "simple_strtoul(this_opt+5, NULL, 0);\n" - "+ screen_info.lfb_base =\n" - "+ simple_strtoul(this_opt + 5, NULL, 0);\n" + "- screen_info.lfb_base simple_strtoul(this_opt+5, NULL, 0);\n" + "+ screen_info.lfb_base + simple_strtoul(this_opt + 5, NULL, 0);\n" " else if (!strncmp(this_opt, \"stride:\", 7))\n" - "- screen_info.lfb_linelength =\n" - "simple_strtoul(this_opt+7, NULL, 0) * 4;\n" - "+ screen_info.lfb_linelength =\n" - "+ simple_strtoul(this_opt + 7, NULL, 0) * 4;\n" + "- screen_info.lfb_linelength simple_strtoul(this_opt+7, NULL, 0) * 4;\n" + "+ screen_info.lfb_linelength + simple_strtoul(this_opt + 7, NULL, 0) * 4;\n" " else if (!strncmp(this_opt, \"height:\", 7))\n" - "- screen_info.lfb_height =\n" - "simple_strtoul(this_opt+7, NULL, 0);\n" - "+ screen_info.lfb_height =\n" - "+ simple_strtoul(this_opt + 7, NULL, 0);\n" + "- screen_info.lfb_height simple_strtoul(this_opt+7, NULL, 0);\n" + "+ screen_info.lfb_height + simple_strtoul(this_opt + 7, NULL, 0);\n" " else if (!strncmp(this_opt, \"width:\", 6))\n" - "- screen_info.lfb_width =\n" - "simple_strtoul(this_opt+6, NULL, 0);\n" - "+ screen_info.lfb_width =\n" - "+ simple_strtoul(this_opt + 6, NULL, 0);\n" + "- screen_info.lfb_width simple_strtoul(this_opt+6, NULL, 0);\n" + "+ screen_info.lfb_width + simple_strtoul(this_opt + 6, NULL, 0);\n" " }\n" " }\n" "\n" @@ -205,8 +187,7 @@ "\n" "- info->screen_base = ioremap_wc(efifb_fix.smem_start,\n" "efifb_fix.smem_len);\n" - "+ info->screen_base =\n" - "+ ioremap_wc(efifb_fix.smem_start, efifb_fix.smem_len);\n" + "+ info->screen_base + ioremap_wc(efifb_fix.smem_start, efifb_fix.smem_len);\n" " if (!info->screen_base) {\n" " printk(KERN_ERR \"efifb: abort, cannot ioremap video memory \"\n" "- \"0x%x @ 0x%lx\\n\",\n" @@ -297,7 +278,7 @@ "> Thanks for the patch.\n" "> \n" "> On Mon, Feb 9, 2015 at 12:55 PM, Parmeshwr Prasad\n" - "> <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org> wrote:\n" + "> <parmeshwr_prasad@dell.com> wrote:\n" "> > Hi All,\n" "> >\n" "> > Please review this patch.\n" @@ -308,12 +289,12 @@ "> >\n" "> >\n" "> > From c49139fac1d15fe2da80d06e2a79eb8be7c079a7 Mon Sep 17 00:00:00 2001\n" - "> > From: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org>\n" + "> > From: Parmeshwr Prasad <parmeshwr_prasad@dell.com>\n" "> > Date: Mon, 9 Feb 2015 07:33:59 -0500\n" "> > Subject: [PATCH] Trival patch: improved indentation, and removed some ERROR\n" "> > from code\n" "> >\n" - "> > Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org>\n" + "> > Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad@dell.com>\n" "> > ---\n" "> \n" "> 1: did you use git to send this patch ?\n" @@ -325,4 +306,4 @@ "> Cheers,\n" > --Prabhakar Lad -8973a2c87ef18a55099d43373a0030cbfac18cb2c8b5ef1ff9292ea73e08945b +74f67cdc3c9da0847e473525824fefb2fcdd6ede542e60083e0e0ad6021b10ee
diff --git a/a/1.txt b/N2/1.txt index 5001ec1..25f0160 100644 --- a/a/1.txt +++ b/N2/1.txt @@ -17,11 +17,11 @@ This one I have checked with checkpatch.pl it don't has any warning or comment. I am sending these patches with mutt. >From 8ce800b5f5a048109014994bcfc4fae2ef9cc271 Mon Sep 17 00:00:00 2001 -From: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org> +From: Parmeshwr Prasad <parmeshwr_prasad@dell.com> Date: Tue, 10 Feb 2015 00:33:30 -0500 Subject: [PATCH] Trival patch: improved indentation in efifb.c file -Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org> +Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad@dell.com> --- drivers/video/fbdev/efifb.c | 128 +++++++++++++++++++++++--------------------- 1 file changed, 68 insertions(+), 60 deletions(-) @@ -281,7 +281,7 @@ On Mon, Feb 09, 2015 at 08:24:50AM -0600, Lad, Prabhakar wrote: > Thanks for the patch. > > On Mon, Feb 9, 2015 at 12:55 PM, Parmeshwr Prasad -> <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org> wrote: +> <parmeshwr_prasad@dell.com> wrote: > > Hi All, > > > > Please review this patch. @@ -292,12 +292,12 @@ On Mon, Feb 09, 2015 at 08:24:50AM -0600, Lad, Prabhakar wrote: > > > > > > From c49139fac1d15fe2da80d06e2a79eb8be7c079a7 Mon Sep 17 00:00:00 2001 -> > From: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org> +> > From: Parmeshwr Prasad <parmeshwr_prasad@dell.com> > > Date: Mon, 9 Feb 2015 07:33:59 -0500 > > Subject: [PATCH] Trival patch: improved indentation, and removed some ERROR > > from code > > -> > Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org> +> > Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad@dell.com> > > --- > > 1: did you use git to send this patch ? diff --git a/a/content_digest b/N2/content_digest index 29c2ef1..7851c44 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -1,17 +1,16 @@ "ref\020150209125548.GA27277@linuxteamdev.amer.dell.com\0" "ref\0CA+V-a8todzzHHTSaJ1UzT+1sXrdbNaaBah66gFr2kEigNBhQYw@mail.gmail.com\0" - "ref\0CA+V-a8todzzHHTSaJ1UzT+1sXrdbNaaBah66gFr2kEigNBhQYw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org\0" - "From\0Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org>\0" + "From\0Parmeshwr Prasad <parmeshwr_prasad@dell.com>\0" "Subject\0Re: [PATCH1/2] Trivial patch in efifb.c to solve common indent issue and indent error\0" "Date\0Tue, 10 Feb 2015 03:06:24 -0500\0" "To\0Lad" - " Prabhakar <prabhakar.csengg-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>\0" - "Cc\0pjones-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org <pjones-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>" - Jean-Christophe Plagniol-Villard <plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.org> - Tomi Valkeinen <tomi.valkeinen-l0cyMroinI0@public.gmane.org> - LFBDEV <linux-fbdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org> - LKML <linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org> - " linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org <linux-efi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>\0" + " Prabhakar <prabhakar.csengg@gmail.com>\0" + "Cc\0pjones@redhat.com <pjones@redhat.com>" + Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> + Tomi Valkeinen <tomi.valkeinen@ti.com> + LFBDEV <linux-fbdev@vger.kernel.org> + LKML <linux-kernel@vger.kernel.org> + " linux-efi@vger.kernel.org <linux-efi@vger.kernel.org>\0" "\00:1\0" "b\0" "I have created two patch now.\n" @@ -33,11 +32,11 @@ "I am sending these patches with mutt.\n" "\n" ">From 8ce800b5f5a048109014994bcfc4fae2ef9cc271 Mon Sep 17 00:00:00 2001\n" - "From: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org>\n" + "From: Parmeshwr Prasad <parmeshwr_prasad@dell.com>\n" "Date: Tue, 10 Feb 2015 00:33:30 -0500\n" "Subject: [PATCH] Trival patch: improved indentation in efifb.c file\n" "\n" - "Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org>\n" + "Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad@dell.com>\n" "---\n" " drivers/video/fbdev/efifb.c | 128 +++++++++++++++++++++++---------------------\n" " 1 file changed, 68 insertions(+), 60 deletions(-)\n" @@ -297,7 +296,7 @@ "> Thanks for the patch.\n" "> \n" "> On Mon, Feb 9, 2015 at 12:55 PM, Parmeshwr Prasad\n" - "> <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org> wrote:\n" + "> <parmeshwr_prasad@dell.com> wrote:\n" "> > Hi All,\n" "> >\n" "> > Please review this patch.\n" @@ -308,12 +307,12 @@ "> >\n" "> >\n" "> > From c49139fac1d15fe2da80d06e2a79eb8be7c079a7 Mon Sep 17 00:00:00 2001\n" - "> > From: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org>\n" + "> > From: Parmeshwr Prasad <parmeshwr_prasad@dell.com>\n" "> > Date: Mon, 9 Feb 2015 07:33:59 -0500\n" "> > Subject: [PATCH] Trival patch: improved indentation, and removed some ERROR\n" "> > from code\n" "> >\n" - "> > Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org>\n" + "> > Signed-off-by: Parmeshwr Prasad <parmeshwr_prasad@dell.com>\n" "> > ---\n" "> \n" "> 1: did you use git to send this patch ?\n" @@ -325,4 +324,4 @@ "> Cheers,\n" > --Prabhakar Lad -8973a2c87ef18a55099d43373a0030cbfac18cb2c8b5ef1ff9292ea73e08945b +20e679adb81196484c1779f5dd85ffa83cb9ffc22d1f71a6f8e3f4f2d5fb8a2d
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.