* [PATCH] sh: clkfwk: don't pass void pointers to ioread*
@ 2019-06-28 6:25 Christoph Hellwig
2019-06-28 7:01 ` Geert Uytterhoeven
0 siblings, 1 reply; 3+ messages in thread
From: Christoph Hellwig @ 2019-06-28 6:25 UTC (permalink / raw)
To: ysato, dalias; +Cc: linux-sh, linux-kernel
Passing pointers with a const attrÑ–bute to the ioread* functions
causes a lot of compiler warnings, so remove the extra attributes.
Signed-off-by: Christoph Hellwig <hch@lst.de>
---
drivers/sh/clk/cpg.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/sh/clk/cpg.c b/drivers/sh/clk/cpg.c
index eeb028b9cdb3..4f3d99d37809 100644
--- a/drivers/sh/clk/cpg.c
+++ b/drivers/sh/clk/cpg.c
@@ -36,17 +36,17 @@ static void sh_clk_write(int value, struct clk *clk)
iowrite32(value, clk->mapped_reg);
}
-static unsigned int r8(const void __iomem *addr)
+static unsigned int r8(void __iomem *addr)
{
return ioread8(addr);
}
-static unsigned int r16(const void __iomem *addr)
+static unsigned int r16(void __iomem *addr)
{
return ioread16(addr);
}
-static unsigned int r32(const void __iomem *addr)
+static unsigned int r32(void __iomem *addr)
{
return ioread32(addr);
}
@@ -55,7 +55,7 @@ static int sh_clk_mstp_enable(struct clk *clk)
{
sh_clk_write(sh_clk_read(clk) & ~(1 << clk->enable_bit), clk);
if (clk->status_reg) {
- unsigned int (*read)(const void __iomem *addr);
+ unsigned int (*read)(void __iomem *addr);
int i;
void __iomem *mapped_status = (phys_addr_t)clk->status_reg -
(phys_addr_t)clk->enable_reg + clk->mapped_reg;
--
2.20.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] sh: clkfwk: don't pass void pointers to ioread*
2019-06-28 6:25 [PATCH] sh: clkfwk: don't pass void pointers to ioread* Christoph Hellwig
@ 2019-06-28 7:01 ` Geert Uytterhoeven
2019-06-28 7:12 ` Christoph Hellwig
0 siblings, 1 reply; 3+ messages in thread
From: Geert Uytterhoeven @ 2019-06-28 7:01 UTC (permalink / raw)
To: Christoph Hellwig
Cc: Yoshinori Sato, Rich Felker, Linux-sh list,
Linux Kernel Mailing List, Arnd Bergmann
Hi Christoph,
On Fri, Jun 28, 2019 at 8:25 AM Christoph Hellwig <hch@lst.de> wrote:
> Passing pointers with a const attrÑ–bute to the ioread* functions
> causes a lot of compiler warnings, so remove the extra attributes.
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
Thanks for your patch!
> ---
> drivers/sh/clk/cpg.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/sh/clk/cpg.c b/drivers/sh/clk/cpg.c
> index eeb028b9cdb3..4f3d99d37809 100644
> --- a/drivers/sh/clk/cpg.c
> +++ b/drivers/sh/clk/cpg.c
> @@ -36,17 +36,17 @@ static void sh_clk_write(int value, struct clk *clk)
> iowrite32(value, clk->mapped_reg);
> }
>
> -static unsigned int r8(const void __iomem *addr)
> +static unsigned int r8(void __iomem *addr)
This is due to include/asm-generic/io.h and include/asm-generic/iomap.h
using different prototypes, right?
include/asm-generic/io.h:static inline u8 ioread8(const volatile void
__iomem *addr)
include/asm-generic/io.h:static inline u16 ioread16(const volatile
void __iomem *addr)
include/asm-generic/io.h:static inline u32 ioread32(const volatile
void __iomem *addr)
include/asm-generic/io.h:static inline u64 ioread64(const volatile
void __iomem *addr)
include/asm-generic/iomap.h:extern unsigned int ioread8(void __iomem *);
include/asm-generic/iomap.h:extern unsigned int ioread16(void __iomem *);
include/asm-generic/iomap.h:extern unsigned int ioread32(void __iomem *);
include/asm-generic/iomap.h:extern u64 ioread64(void __iomem *);
Wouldn't it be better to fix include/asm-generic/iomap.h and lib/iomap.c
instead?
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] sh: clkfwk: don't pass void pointers to ioread*
2019-06-28 7:01 ` Geert Uytterhoeven
@ 2019-06-28 7:12 ` Christoph Hellwig
0 siblings, 0 replies; 3+ messages in thread
From: Christoph Hellwig @ 2019-06-28 7:12 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: Christoph Hellwig, Yoshinori Sato, Rich Felker, Linux-sh list,
Linux Kernel Mailing List, Arnd Bergmann
On Fri, Jun 28, 2019 at 09:01:40AM +0200, Geert Uytterhoeven wrote:
> This is due to include/asm-generic/io.h and include/asm-generic/iomap.h
> using different prototypes, right?
>
> include/asm-generic/io.h:static inline u8 ioread8(const volatile void
> __iomem *addr)
> include/asm-generic/io.h:static inline u16 ioread16(const volatile
> void __iomem *addr)
> include/asm-generic/io.h:static inline u32 ioread32(const volatile
> void __iomem *addr)
> include/asm-generic/io.h:static inline u64 ioread64(const volatile
> void __iomem *addr)
>
> include/asm-generic/iomap.h:extern unsigned int ioread8(void __iomem *);
> include/asm-generic/iomap.h:extern unsigned int ioread16(void __iomem *);
> include/asm-generic/iomap.h:extern unsigned int ioread32(void __iomem *);
> include/asm-generic/iomap.h:extern u64 ioread64(void __iomem *);
>
> Wouldn't it be better to fix include/asm-generic/iomap.h and lib/iomap.c
> instead?
Oh, I didn't even notice we had this declared by different files..
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-06-28 7:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-28 6:25 [PATCH] sh: clkfwk: don't pass void pointers to ioread* Christoph Hellwig
2019-06-28 7:01 ` Geert Uytterhoeven
2019-06-28 7:12 ` Christoph Hellwig
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).