All of lore.kernel.org
 help / color / mirror / Atom feed
From: Palmer Dabbelt <palmer@dabbelt.com>
To: sunnanyong@huawei.com
Cc: Paul Walmsley <paul.walmsley@sifive.com>,
	aou@eecs.berkeley.edu, linux-riscv@lists.infradead.org,
	linux-kernel@vger.kernel.org, Atish Patra <Atish.Patra@wdc.com>,
	wangkefeng.wang@huawei.com, sunnanyong@huawei.com
Subject: Re: [PATCH 0/9] riscv: misc cleanup
Date: Tue, 09 Mar 2021 20:47:32 -0800 (PST)	[thread overview]
Message-ID: <mhng-c2e752e9-7f90-41c1-98be-8d8b71a8ecf9@penguin> (raw)
In-Reply-To: <20210305113332.428048-1-sunnanyong@huawei.com>

On Fri, 05 Mar 2021 03:33:23 PST (-0800), sunnanyong@huawei.com wrote:
> Fix some compilation warnings,improve code style
>
> Nanyong Sun (9):
>   riscv: traps: Fix no prototype warnings
>   riscv: irq: Fix no prototype warning
>   riscv: sbi: Fix comment of __sbi_set_timer_v01
>   riscv: ptrace: Fix no prototype warnings
>   riscv: time: Fix no prototype for time_init
>   riscv: syscall_table: Reduce W=1 compilation warnings noise
>   riscv: process: Fix no prototype for show_regs
>   riscv: ftrace: Use ftrace_get_regs helper
>   riscv: process: Fix no prototype for arch_dup_task_struct
>
>  arch/riscv/include/asm/asm-prototypes.h | 16 ++++++++++++++++
>  arch/riscv/include/asm/irq.h            |  2 ++
>  arch/riscv/include/asm/processor.h      |  1 +
>  arch/riscv/include/asm/ptrace.h         |  5 +++++
>  arch/riscv/include/asm/timex.h          |  2 ++
>  arch/riscv/kernel/Makefile              |  1 +
>  arch/riscv/kernel/probes/ftrace.c       | 16 +++++++++-------
>  arch/riscv/kernel/process.c             |  1 +
>  arch/riscv/kernel/sbi.c                 |  2 +-
>  arch/riscv/kernel/time.c                |  1 +
>  arch/riscv/kernel/traps.c               |  1 +
>  11 files changed, 40 insertions(+), 8 deletions(-)

Thanks.  I fixed the checkpatch warning, these are all on fixes.

WARNING: multiple messages have this Message-ID (diff)
From: Palmer Dabbelt <palmer@dabbelt.com>
To: sunnanyong@huawei.com
Cc: Paul Walmsley <paul.walmsley@sifive.com>,
	aou@eecs.berkeley.edu, linux-riscv@lists.infradead.org,
	linux-kernel@vger.kernel.org, Atish Patra <Atish.Patra@wdc.com>,
	 wangkefeng.wang@huawei.com, sunnanyong@huawei.com
Subject: Re: [PATCH 0/9] riscv: misc cleanup
Date: Tue, 09 Mar 2021 20:47:32 -0800 (PST)	[thread overview]
Message-ID: <mhng-c2e752e9-7f90-41c1-98be-8d8b71a8ecf9@penguin> (raw)
In-Reply-To: <20210305113332.428048-1-sunnanyong@huawei.com>

On Fri, 05 Mar 2021 03:33:23 PST (-0800), sunnanyong@huawei.com wrote:
> Fix some compilation warnings,improve code style
>
> Nanyong Sun (9):
>   riscv: traps: Fix no prototype warnings
>   riscv: irq: Fix no prototype warning
>   riscv: sbi: Fix comment of __sbi_set_timer_v01
>   riscv: ptrace: Fix no prototype warnings
>   riscv: time: Fix no prototype for time_init
>   riscv: syscall_table: Reduce W=1 compilation warnings noise
>   riscv: process: Fix no prototype for show_regs
>   riscv: ftrace: Use ftrace_get_regs helper
>   riscv: process: Fix no prototype for arch_dup_task_struct
>
>  arch/riscv/include/asm/asm-prototypes.h | 16 ++++++++++++++++
>  arch/riscv/include/asm/irq.h            |  2 ++
>  arch/riscv/include/asm/processor.h      |  1 +
>  arch/riscv/include/asm/ptrace.h         |  5 +++++
>  arch/riscv/include/asm/timex.h          |  2 ++
>  arch/riscv/kernel/Makefile              |  1 +
>  arch/riscv/kernel/probes/ftrace.c       | 16 +++++++++-------
>  arch/riscv/kernel/process.c             |  1 +
>  arch/riscv/kernel/sbi.c                 |  2 +-
>  arch/riscv/kernel/time.c                |  1 +
>  arch/riscv/kernel/traps.c               |  1 +
>  11 files changed, 40 insertions(+), 8 deletions(-)

Thanks.  I fixed the checkpatch warning, these are all on fixes.

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

  parent reply	other threads:[~2021-03-10  4:48 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-05 11:33 [PATCH 0/9] riscv: misc cleanup Nanyong Sun
2021-03-05 11:33 ` Nanyong Sun
2021-03-05 11:33 ` [PATCH 1/9] riscv: traps: Fix no prototype warnings Nanyong Sun
2021-03-05 11:33   ` Nanyong Sun
2021-03-10  4:47   ` Palmer Dabbelt
2021-03-10  4:47     ` Palmer Dabbelt
2021-03-05 11:33 ` [PATCH 2/9] riscv: irq: Fix no prototype warning Nanyong Sun
2021-03-05 11:33   ` Nanyong Sun
2021-03-05 11:33 ` [PATCH 3/9] riscv: sbi: Fix comment of __sbi_set_timer_v01 Nanyong Sun
2021-03-05 11:33   ` Nanyong Sun
2021-03-05 11:33 ` [PATCH 4/9] riscv: ptrace: Fix no prototype warnings Nanyong Sun
2021-03-05 11:33   ` Nanyong Sun
2021-03-05 11:33 ` [PATCH 5/9] riscv: time: Fix no prototype for time_init Nanyong Sun
2021-03-05 11:33   ` Nanyong Sun
2021-03-05 11:33 ` [PATCH 6/9] riscv: syscall_table: Reduce W=1 compilation warnings noise Nanyong Sun
2021-03-05 11:33   ` Nanyong Sun
2021-03-05 11:33 ` [PATCH 7/9] riscv: process: Fix no prototype for show_regs Nanyong Sun
2021-03-05 11:33   ` Nanyong Sun
2021-03-05 11:33 ` [PATCH 8/9] riscv: ftrace: Use ftrace_get_regs helper Nanyong Sun
2021-03-05 11:33   ` Nanyong Sun
2021-03-05 11:33 ` [PATCH 9/9] riscv: process: Fix no prototype for arch_dup_task_struct Nanyong Sun
2021-03-05 11:33   ` Nanyong Sun
2021-03-10  4:47 ` Palmer Dabbelt [this message]
2021-03-10  4:47   ` [PATCH 0/9] riscv: misc cleanup Palmer Dabbelt

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=mhng-c2e752e9-7f90-41c1-98be-8d8b71a8ecf9@penguin \
    --to=palmer@dabbelt.com \
    --cc=Atish.Patra@wdc.com \
    --cc=aou@eecs.berkeley.edu \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=paul.walmsley@sifive.com \
    --cc=sunnanyong@huawei.com \
    --cc=wangkefeng.wang@huawei.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 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.