* resource_size doesn't change the resource
@ 2009-11-11 14:04 Jean Delvare
2009-11-11 14:20 ` Américo Wang
0 siblings, 1 reply; 2+ messages in thread
From: Jean Delvare @ 2009-11-11 14:04 UTC (permalink / raw)
To: LKML; +Cc: Greg KH, Andrew Morton
The resource_size function doesn't change the resource it operates on,
so the res parameter can be marked const. Same for the resource_type
function.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
---
include/linux/ioport.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- linux-2.6.32-rc6.orig/include/linux/ioport.h 2009-09-28 10:29:17.000000000 +0200
+++ linux-2.6.32-rc6/include/linux/ioport.h 2009-11-11 13:22:27.000000000 +0100
@@ -126,11 +126,11 @@ extern int allocate_resource(struct reso
int adjust_resource(struct resource *res, resource_size_t start,
resource_size_t size);
resource_size_t resource_alignment(struct resource *res);
-static inline resource_size_t resource_size(struct resource *res)
+static inline resource_size_t resource_size(const struct resource *res)
{
return res->end - res->start + 1;
}
-static inline unsigned long resource_type(struct resource *res)
+static inline unsigned long resource_type(const struct resource *res)
{
return res->flags & IORESOURCE_TYPE_BITS;
}
--
Jean Delvare
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: resource_size doesn't change the resource
2009-11-11 14:04 resource_size doesn't change the resource Jean Delvare
@ 2009-11-11 14:20 ` Américo Wang
0 siblings, 0 replies; 2+ messages in thread
From: Américo Wang @ 2009-11-11 14:20 UTC (permalink / raw)
To: Jean Delvare; +Cc: LKML, Greg KH, Andrew Morton
On Wed, Nov 11, 2009 at 03:04:24PM +0100, Jean Delvare wrote:
>The resource_size function doesn't change the resource it operates on,
>so the res parameter can be marked const. Same for the resource_type
>function.
>
>Signed-off-by: Jean Delvare <khali@linux-fr.org>
Reviewed-by: WANG Cong <xiyou.wangcong@gmail.com>
>---
> include/linux/ioport.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
>--- linux-2.6.32-rc6.orig/include/linux/ioport.h 2009-09-28 10:29:17.000000000 +0200
>+++ linux-2.6.32-rc6/include/linux/ioport.h 2009-11-11 13:22:27.000000000 +0100
>@@ -126,11 +126,11 @@ extern int allocate_resource(struct reso
> int adjust_resource(struct resource *res, resource_size_t start,
> resource_size_t size);
> resource_size_t resource_alignment(struct resource *res);
>-static inline resource_size_t resource_size(struct resource *res)
>+static inline resource_size_t resource_size(const struct resource *res)
> {
> return res->end - res->start + 1;
> }
>-static inline unsigned long resource_type(struct resource *res)
>+static inline unsigned long resource_type(const struct resource *res)
> {
> return res->flags & IORESOURCE_TYPE_BITS;
> }
>
>
>--
>Jean Delvare
>--
>To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at http://vger.kernel.org/majordomo-info.html
>Please read the FAQ at http://www.tux.org/lkml/
--
Live like a child, think like the god.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-11-11 14:20 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-11 14:04 resource_size doesn't change the resource Jean Delvare
2009-11-11 14:20 ` Américo Wang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox