Re: [PATCH] drivers: base: Add prototype declaration in memory.c

2013-12-18 Thread Greg Kroah-Hartman
On Wed, Dec 18, 2013 at 11:10:24AM -0800, j...@joshtriplett.org wrote: > On Wed, Dec 18, 2013 at 11:03:44AM -0800, Greg Kroah-Hartman wrote: > > On Wed, Dec 18, 2013 at 11:01:08AM -0800, j...@joshtriplett.org wrote: > > > On Wed, Dec 18, 2013 at 07:34:51AM -0800, Greg Kroah-Hartman wrote: > > > > O

Re: [PATCH] drivers: base: Add prototype declaration in memory.c

2013-12-18 Thread josh
On Wed, Dec 18, 2013 at 11:03:44AM -0800, Greg Kroah-Hartman wrote: > On Wed, Dec 18, 2013 at 11:01:08AM -0800, j...@joshtriplett.org wrote: > > On Wed, Dec 18, 2013 at 07:34:51AM -0800, Greg Kroah-Hartman wrote: > > > On Wed, Dec 18, 2013 at 12:09:53PM +0530, Rashika Kheria wrote: > > > > Add the

Re: [PATCH] drivers: base: Add prototype declaration in memory.c

2013-12-18 Thread Greg Kroah-Hartman
On Wed, Dec 18, 2013 at 11:01:08AM -0800, j...@joshtriplett.org wrote: > On Wed, Dec 18, 2013 at 07:34:51AM -0800, Greg Kroah-Hartman wrote: > > On Wed, Dec 18, 2013 at 12:09:53PM +0530, Rashika Kheria wrote: > > > Add the prototype declaration of function memory_block_size_bytes() in > > > memory.

Re: [PATCH] drivers: base: Add prototype declaration in memory.c

2013-12-18 Thread josh
On Wed, Dec 18, 2013 at 07:34:51AM -0800, Greg Kroah-Hartman wrote: > On Wed, Dec 18, 2013 at 12:09:53PM +0530, Rashika Kheria wrote: > > Add the prototype declaration of function memory_block_size_bytes() in > > memory.c. > > > > This eliminates the following warning in memory.c: > > drivers/base

Re: [PATCH] drivers: base: Add prototype declaration in memory.c

2013-12-18 Thread Greg Kroah-Hartman
On Wed, Dec 18, 2013 at 12:09:53PM +0530, Rashika Kheria wrote: > Add the prototype declaration of function memory_block_size_bytes() in > memory.c. > > This eliminates the following warning in memory.c: > drivers/base/memory.c:87:1: warning: no previous prototype for > ‘memory_block_size_bytes’

[PATCH] drivers: base: Add prototype declaration in memory.c

2013-12-17 Thread Rashika Kheria
Add the prototype declaration of function memory_block_size_bytes() in memory.c. This eliminates the following warning in memory.c: drivers/base/memory.c:87:1: warning: no previous prototype for ‘memory_block_size_bytes’ [-Wmissing-prototypes] Signed-off-by: Rashika Kheria Reviewed-by: Josh Tri