diff for duplicates of <20150210081015.GB8438@linuxteamdev.amer.dell.com> diff --git a/a/1.txt b/N1/1.txt index da7296c..9626fe2 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -5,14 +5,14 @@ This is addressing following changes: 2- There was static initialization of request_mem_succeeded, which is removed. 3- Assignment in if condition, this is fixed. ->From bf6328196341ea36ec79fba71b9b5c2c36d61043 Mon Sep 17 00:00:00 2001 -From: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org> +From bf6328196341ea36ec79fba71b9b5c2c36d61043 Mon Sep 17 00:00:00 2001 +From: Parmeshwr Prasad <parmeshwr_prasad@dell.com> Date: Tue, 10 Feb 2015 02:49:26 -0500 Subject: [PATCH 2/2] Trivial patch: In this patch printk is replaced by pr_* macros and static initialization of request_mem_succeeded is removed and assignment in if condition is removed -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 | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) @@ -72,8 +72,7 @@ index d757d0f..133fbfb 100644 goto err_release_mem; } @@ -228,25 +230,23 @@ static int efifb_probe(struct platform_device *dev) - 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", @@ -160,11 +159,11 @@ This don't has any checkpatch.pl comment/warning. > 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(-) @@ -222,13 +221,11 @@ This don't has any checkpatch.pl comment/warning. > + 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); > } @@ -265,46 +262,30 @@ This don't has any checkpatch.pl comment/warning. > 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); > } > } > @@ -332,8 +313,7 @@ This don't has any checkpatch.pl comment/warning. > > - 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", @@ -424,7 +404,7 @@ This don't has any checkpatch.pl comment/warning. > > 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. @@ -435,12 +415,12 @@ This don't has any checkpatch.pl comment/warning. > > > > > > > > > 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 ? @@ -453,5 +433,5 @@ This don't has any checkpatch.pl comment/warning. > > --Prabhakar Lad > -- > To unsubscribe from this list: send the line "unsubscribe linux-efi" in -> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org +> the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/a/content_digest b/N1/content_digest index 73454a0..23ea746 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -2,9 +2,9 @@ "ref\0CA+V-a8todzzHHTSaJ1UzT+1sXrdbNaaBah66gFr2kEigNBhQYw@mail.gmail.com\0" "ref\020150210080614.GA8438@linuxteamdev.amer.dell.com\0" "ref\020150210080614.GA8438-uSknhY0EtF8ok8EplQz5xE1Vg53cnbg30E9HWUfgJXw@public.gmane.org\0" - "From\0Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org>\0" + "From\0Parmeshwr Prasad <parmeshwr_prasad@dell.com>\0" "Subject\0Re: [PATCH2/2] Trivial patch in efifb.c to solve common indent issue and indent error\0" - "Date\0Tue, 10 Feb 2015 03:10:20 -0500\0" + "Date\0Tue, 10 Feb 2015 08:10:20 +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>" @@ -22,14 +22,14 @@ "2- There was static initialization of request_mem_succeeded, which is removed.\n" "3- Assignment in if condition, this is fixed.\n" "\n" - ">From bf6328196341ea36ec79fba71b9b5c2c36d61043 Mon Sep 17 00:00:00 2001\n" - "From: Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org>\n" + "From bf6328196341ea36ec79fba71b9b5c2c36d61043 Mon Sep 17 00:00:00 2001\n" + "From: Parmeshwr Prasad <parmeshwr_prasad@dell.com>\n" "Date: Tue, 10 Feb 2015 02:49:26 -0500\n" "Subject: [PATCH 2/2] Trivial patch: In this patch printk is replaced by pr_*\n" " macros and static initialization of request_mem_succeeded is removed and\n" " assignment in if condition is removed\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 | 42 +++++++++++++++++++++---------------------\n" " 1 file changed, 21 insertions(+), 21 deletions(-)\n" @@ -89,8 +89,7 @@ " goto err_release_mem;\n" " }\n" "@@ -228,25 +230,23 @@ static int efifb_probe(struct platform_device *dev)\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" @@ -177,11 +176,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" @@ -239,13 +238,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" @@ -282,46 +279,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" @@ -349,8 +330,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" @@ -441,7 +421,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" @@ -452,12 +432,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" @@ -470,7 +450,7 @@ "> > --Prabhakar Lad\n" "> --\n" "> To unsubscribe from this list: send the line \"unsubscribe linux-efi\" in\n" - "> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\n" + "> the body of a message to majordomo@vger.kernel.org\n" > More majordomo info at http://vger.kernel.org/majordomo-info.html -19d448330926a0fd3e38e9ff2ef9fde35b2fb2caeca2db80d4907677c133d99d +928aae79139adf62e8ee8da4f1a1ccb8023423067cb03ed5197c1b9f472ca69c
diff --git a/a/1.txt b/N2/1.txt index da7296c..4deb600 100644 --- a/a/1.txt +++ b/N2/1.txt @@ -6,13 +6,13 @@ This is addressing following changes: 3- Assignment in if condition, this is fixed. >From bf6328196341ea36ec79fba71b9b5c2c36d61043 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 02:49:26 -0500 Subject: [PATCH 2/2] Trivial patch: In this patch printk is replaced by pr_* macros and static initialization of request_mem_succeeded is removed and assignment in if condition is removed -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 | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) @@ -160,11 +160,11 @@ This don't has any checkpatch.pl comment/warning. > 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(-) @@ -424,7 +424,7 @@ This don't has any checkpatch.pl comment/warning. > > 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. @@ -435,12 +435,12 @@ This don't has any checkpatch.pl comment/warning. > > > > > > > > > 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 ? @@ -453,5 +453,5 @@ This don't has any checkpatch.pl comment/warning. > > --Prabhakar Lad > -- > To unsubscribe from this list: send the line "unsubscribe linux-efi" in -> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org +> the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/a/content_digest b/N2/content_digest index 73454a0..d57952f 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -1,18 +1,17 @@ "ref\020150209125548.GA27277@linuxteamdev.amer.dell.com\0" "ref\0CA+V-a8todzzHHTSaJ1UzT+1sXrdbNaaBah66gFr2kEigNBhQYw@mail.gmail.com\0" "ref\020150210080614.GA8438@linuxteamdev.amer.dell.com\0" - "ref\020150210080614.GA8438-uSknhY0EtF8ok8EplQz5xE1Vg53cnbg30E9HWUfgJXw@public.gmane.org\0" - "From\0Parmeshwr Prasad <parmeshwr_prasad-8PEkshWhKlo@public.gmane.org>\0" + "From\0Parmeshwr Prasad <parmeshwr_prasad@dell.com>\0" "Subject\0Re: [PATCH2/2] Trivial patch in efifb.c to solve common indent issue and indent error\0" "Date\0Tue, 10 Feb 2015 03:10:20 -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" "On Tue, Feb 10, 2015 at 02:06:24AM -0600, Prasad, Parmeshwr wrote:\n" @@ -23,13 +22,13 @@ "3- Assignment in if condition, this is fixed.\n" "\n" ">From bf6328196341ea36ec79fba71b9b5c2c36d61043 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 02:49:26 -0500\n" "Subject: [PATCH 2/2] Trivial patch: In this patch printk is replaced by pr_*\n" " macros and static initialization of request_mem_succeeded is removed and\n" " assignment in if condition is removed\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 | 42 +++++++++++++++++++++---------------------\n" " 1 file changed, 21 insertions(+), 21 deletions(-)\n" @@ -177,11 +176,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" @@ -441,7 +440,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" @@ -452,12 +451,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" @@ -470,7 +469,7 @@ "> > --Prabhakar Lad\n" "> --\n" "> To unsubscribe from this list: send the line \"unsubscribe linux-efi\" in\n" - "> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\n" + "> the body of a message to majordomo@vger.kernel.org\n" > More majordomo info at http://vger.kernel.org/majordomo-info.html -19d448330926a0fd3e38e9ff2ef9fde35b2fb2caeca2db80d4907677c133d99d +f422b0adf393cc8a888a809190528c6ff82c8f43a3a7ca73be9b3c037351c068
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.