Re: [PATCH v6 02/36] openrisc: add ioremap_nocache declaration before include asm-generic/io.h and sync ioremap prototype with it.

2018-01-15 Thread Stafford Horne
re importing asm-generic/io.h. Also, the change adds a prototype for ioremap where size is size_t so fix that as well. I hope that helps. But for the change: Acked-by: Stafford Horne > Signed-off-by: Greentime Hu > --- > arch/openrisc/include/asm/io.h |3 ++- > 1 file changed

Re: [PATCH v5 02/39] openrisc: add ioremap_nocache declaration before include asm-generic/io.h and sync ioremap prototype with it.

2018-01-03 Thread Stafford Horne
Hello, On Tue, Jan 02, 2018 at 04:24:34PM +0800, Greentime Hu wrote: > From: Greentime Hu > > It will be built failed if commit id: d25ea659 is selected. This patch can > fix this > build error. Ideally you would mention the commit description since the id is not yet usptream. I found it here

Re: [PATCH 1/2] libceph: Remove unneeded stddef.h include

2017-02-06 Thread Stafford Horne
On Mon, Feb 06, 2017 at 04:16:55PM +, David Laight wrote: > From: Stafford Horne > > Sent: 05 February 2017 07:08 > > This was causing a build failure for openrisc when using musl and > > gcc 5.4.0 since the file is not available in the toolchain. > > > >

[PATCH 1/2] libceph: Remove unneeded stddef.h include

2017-02-04 Thread Stafford Horne
This was causing a build failure for openrisc when using musl and gcc 5.4.0 since the file is not available in the toolchain. It doesnt seem this is needed and removing it does not cause any build warnings for me. Signed-off-by: Stafford Horne --- net/ceph/snapshot.c | 2 -- 1 file changed, 2

Re: [PATCH 3/3] 3c59x: Use setup_timer()

2016-02-27 Thread Stafford Horne
On Sun, 28 Feb 2016, Amitoj Kaur Chawla wrote: On Sun, Feb 28, 2016 at 12:18 AM, Stafford Horne wrote: > > > On Thu, 25 Feb 2016, David Miller wrote: > >> From: Amitoj Kaur Chawla >> Date: Wed, 24 Feb 2016 19:28:19 +0530 >> >>> Convert a call to init_t

[PATCH] 3c59x: Ensure to apply the expires time

2016-02-27 Thread Stafford Horne
In commit 5b6490def9168af6a ("3c59x: Use setup_timer()") Amitoj removed add_timer which sets up the epires timer. In this patch the behavior is restore but it uses mod_timer which is a bit more compact. Signed-off-by: Stafford Horne --- I think a patch like this will help restore th

Re: [PATCH 3/3] 3c59x: Use setup_timer()

2016-02-27 Thread Stafford Horne
On Thu, 25 Feb 2016, David Miller wrote: From: Amitoj Kaur Chawla Date: Wed, 24 Feb 2016 19:28:19 +0530 Convert a call to init_timer and accompanying intializations of the timer's data and function fields to a call to setup_timer. The Coccinelle semantic patch that fixes this problem is as