public inbox for linux-block@vger.kernel.org
 help / color / mirror / Atom feed
From: Vineet Gupta <Vineet.Gupta1@synopsys.com>
To: Pavel Machek <pavel@ucw.cz>, <elfring@users.sourceforge.net>,
	kernel list <linux-kernel@vger.kernel>, <linux@armlinux.org.uk>,
	<oleg@redhat.com>, <catalin.marinas@arm.com>,
	<will.deacon@arm.com>, <paulus@ozlabs.org>,
	<benh@kernel.crashing.org>, <mpe@ellerman.id.au>,
	<ard.biesheuvel@linaro.org>, <tglx@linutronix.de>,
	<mingo@redhat.com>, <hpa@zytor.com>, <x86@kernel.org>,
	<scott.bauer@intel.com>, <jonathan.derrick@intel.com>,
	<axboe@kernel.dk>, <daniel.lezcano@linaro.org>,
	<maxime.ripard@free-electrons.com>, <wens@csie.org>,
	<alexander.deucher@amd.com>, <christian.koenig@amd.com>,
	<David1.Zhou@amd.com>, <airlied@linux.ie>, <robdclark@gmail.com>,
	<joro@8bytes.org>, <shli@kernel.org>, <shawnguo@kernel.org>,
	<kernel@pengutronix.de>, <fabio.estevam@nxp.com>,
	<akpm@linux-foundation.org>, <Alexey.Brodkin@synopsys.com>,
	<mhocko@suse.com>, <vbabka@suse.cz>,
	<Vladislav.Zakharov@synopsys.com>, <noamca@mellanox.com>,
	<yamada.masahiro@socionext.com>, <sboyd@codeaurora.org>,
	<viresh.kumar@linaro.org>, <linus.walleij@linaro.org>,
	<heiko@sntech.de>, <aik@ozlabs.ru>, <ruscur@russell.cc>,
	<david@gibson.dropbear.id.au>, <fbarrat@linux.vnet.ibm.com>,
	<alistair@popple.id.au>, <robh@kernel.org>, <joe@perches.com>,
	<harry.wentland@amd.com>, <tony.cheng@amd.com>,
	<Wenjing.Liu@amd.com>, <airlied@redhat.com>, <Ding.Wang@amd.com>,
	<sylvia.tsai@amd.com>, <hersenxs.wu@amd.com>, <Rex.Zhu@amd.com>,
	<JinHuiEric.Huang@amd.com>, <dan.carpenter@oracle.com>,
	<architt@codeaurora.org>, <daniel.vetter@ffwll.ch>,
	<narmstrong@baylibre.com>, <ville.syrjala@linux.intel.com>,
	<jcrouse@codeaurora.org>, <aishpant@gmail.com>,
	<noralf@tronnes.org>, <andresx7@gmail.com>, <Monk.Liu@amd.com>,
	<nicolai.haehnle@amd.com>, <Andrey.Grodzovsky@amd.com>,
	<linux-snps-arc@lists.infradead.org>,
	<linux-arm-kernel@lists.infradead.org>, <kvm-ppc@vger.kernel.org>,
	<linuxppc-dev@lists.ozlabs.org>, <linux-efi@vger.kernel.org>,
	<linux-block@vger.kernel.org>, <amd-gfx@lists.freedesktop.org>,
	<dri-devel@lists.freedesktop.org>,
	<linux-arm-msm@vger.kernel.org>,
	<freedreno@lists.freedesktop.org>,
	<iommu@lists.linux-foundation.org>, <linux-raid@vger.kernel.org>
Cc: Luis de Bethencourt <luisbg@kernel.org>
Subject: Re: [PATCH] fix double ;;s in code
Date: Mon, 19 Feb 2018 21:33:49 -0800	[thread overview]
Message-ID: <f81083a2-4c64-b694-2059-16894e19a79e@synopsys.com> (raw)
In-Reply-To: <20180217211955.GE9640@amd>

[-- Attachment #1: Type: text/plain, Size: 1069 bytes --]

On 02/17/2018 01:19 PM, Pavel Machek wrote:
> Fix double ;;'s in code.
>
> Signed-off-by: Pavel Machek<pavel@ucw.cz>
>
> diff --git a/arch/arc/kernel/setup.c b/arch/arc/kernel/setup.c
> index 9d27331..ec12fe1 100644
> --- a/arch/arc/kernel/setup.c
> +++ b/arch/arc/kernel/setup.c
> @@ -373,7 +373,7 @@ static void arc_chk_core_config(void)
>   {
>   	struct cpuinfo_arc *cpu = &cpuinfo_arc700[smp_processor_id()];
>   	int saved = 0, present = 0;
> -	char *opt_nm = NULL;;
> +	char *opt_nm = NULL;
>   
>   	if (!cpu->extn.timer0)
>   		panic("Timer0 is not present!\n");
> diff --git a/arch/arc/kernel/unwind.c b/arch/arc/kernel/unwind.c
> index 333daab..183391d 100644
> --- a/arch/arc/kernel/unwind.c
> +++ b/arch/arc/kernel/unwind.c
> @@ -366,7 +366,7 @@ static void init_unwind_hdr(struct unwind_table *table,
>   	return;
>   
>   ret_err:
> -	panic("Attention !!! Dwarf FDE parsing errors\n");;
> +	panic("Attention !!! Dwarf FDE parsing errors\n");
>   }
>   

I have a fix from Luis to same effect from Jan sitting in my for-curr

Thx for it anyways.

-Vineet

[-- Attachment #2: Type: text/html, Size: 1523 bytes --]

  parent reply	other threads:[~2018-02-20  5:33 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-17 21:19 [PATCH] fix double ;;s in code Pavel Machek
2018-02-18 10:00 ` Christophe LEROY
2018-02-19 15:41   ` Daniel Vetter
2018-02-19 19:33     ` Pavel Machek
2018-02-20  1:25       ` Rob Clark
2018-02-20  8:03       ` Jani Nikula
2018-02-20 16:34         ` Alex Deucher
2018-02-20 23:47         ` Andrew Morton
2018-02-20  6:19     ` Michael Ellerman
2018-02-20 16:41       ` Joe Perches
2018-02-20  5:33 ` Vineet Gupta [this message]
2018-02-22  9:09 ` Shawn Guo
2018-02-24  8:52   ` Pavel Machek
2018-02-24  8:56     ` Shawn Guo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f81083a2-4c64-b694-2059-16894e19a79e@synopsys.com \
    --to=vineet.gupta1@synopsys.com \
    --cc=Alexey.Brodkin@synopsys.com \
    --cc=Andrey.Grodzovsky@amd.com \
    --cc=David1.Zhou@amd.com \
    --cc=Ding.Wang@amd.com \
    --cc=JinHuiEric.Huang@amd.com \
    --cc=Monk.Liu@amd.com \
    --cc=Rex.Zhu@amd.com \
    --cc=Vladislav.Zakharov@synopsys.com \
    --cc=Wenjing.Liu@amd.com \
    --cc=aik@ozlabs.ru \
    --cc=airlied@linux.ie \
    --cc=airlied@redhat.com \
    --cc=aishpant@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=alexander.deucher@amd.com \
    --cc=alistair@popple.id.au \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=andresx7@gmail.com \
    --cc=architt@codeaurora.org \
    --cc=ard.biesheuvel@linaro.org \
    --cc=axboe@kernel.dk \
    --cc=benh@kernel.crashing.org \
    --cc=catalin.marinas@arm.com \
    --cc=christian.koenig@amd.com \
    --cc=dan.carpenter@oracle.com \
    --cc=daniel.lezcano@linaro.org \
    --cc=daniel.vetter@ffwll.ch \
    --cc=david@gibson.dropbear.id.au \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=elfring@users.sourceforge.net \
    --cc=fabio.estevam@nxp.com \
    --cc=fbarrat@linux.vnet.ibm.com \
    --cc=freedreno@lists.freedesktop.org \
    --cc=harry.wentland@amd.com \
    --cc=heiko@sntech.de \
    --cc=hersenxs.wu@amd.com \
    --cc=hpa@zytor.com \
    --cc=iommu@lists.linux-foundation.org \
    --cc=jcrouse@codeaurora.org \
    --cc=joe@perches.com \
    --cc=jonathan.derrick@intel.com \
    --cc=joro@8bytes.org \
    --cc=kernel@pengutronix.de \
    --cc=kvm-ppc@vger.kernel.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-block@vger.kernel.org \
    --cc=linux-efi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel \
    --cc=linux-raid@vger.kernel.org \
    --cc=linux-snps-arc@lists.infradead.org \
    --cc=linux@armlinux.org.uk \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=luisbg@kernel.org \
    --cc=maxime.ripard@free-electrons.com \
    --cc=mhocko@suse.com \
    --cc=mingo@redhat.com \
    --cc=mpe@ellerman.id.au \
    --cc=narmstrong@baylibre.com \
    --cc=nicolai.haehnle@amd.com \
    --cc=noamca@mellanox.com \
    --cc=noralf@tronnes.org \
    --cc=oleg@redhat.com \
    --cc=paulus@ozlabs.org \
    --cc=pavel@ucw.cz \
    --cc=robdclark@gmail.com \
    --cc=robh@kernel.org \
    --cc=ruscur@russell.cc \
    --cc=sboyd@codeaurora.org \
    --cc=scott.bauer@intel.com \
    --cc=shawnguo@kernel.org \
    --cc=shli@kernel.org \
    --cc=sylvia.tsai@amd.com \
    --cc=tglx@linutronix.de \
    --cc=tony.cheng@amd.com \
    --cc=vbabka@suse.cz \
    --cc=ville.syrjala@linux.intel.com \
    --cc=viresh.kumar@linaro.org \
    --cc=wens@csie.org \
    --cc=will.deacon@arm.com \
    --cc=x86@kernel.org \
    --cc=yamada.masahiro@socionext.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox