Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1243435

Re: [PATCH v2 1/1] x86/early_printk: Use __iomem address space for IO

From Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Newsgroups linux.kernel
Subject Re: [PATCH v2 1/1] x86/early_printk: Use __iomem address space for IO
Date 2015-10-09 16:40 +0200
Message-ID <qhGZZ-4Tm-29@gated-at.bofh.it> (permalink)
References <qhGQk-4IM-43@gated-at.bofh.it>
Organization Intel Finland Oy

Show all headers | View raw


On Fri, 2015-10-09 at 17:29 +0300, Andy Shevchenko wrote:
> There are following warnings on unpatched code:
> 
> arch/x86/kernel/early_printk.c:198:32: warning: incorrect type in 
> initializer (different address spaces)
> arch/x86/kernel/early_printk.c:198:32:    expected void [noderef] 
> <asn:2>*vaddr
> arch/x86/kernel/early_printk.c:198:32:    got unsigned int [usertype] 
> *<noident>
> arch/x86/kernel/early_printk.c:205:32: warning: incorrect type in 
> initializer (different address spaces)
> arch/x86/kernel/early_printk.c:205:32:    expected void [noderef] 
> <asn:2>*vaddr
> arch/x86/kernel/early_printk.c:205:32:    got unsigned int [usertype] 
> *<noident>

This one is wrong, sorry for noise.

> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> v2:
> - amend subject line
>  arch/x86/kernel/early_printk.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/x86/kernel/early_printk.c 
> b/arch/x86/kernel/early_printk.c
> index 076a4a7..77f2f5c 100644
> --- a/arch/x86/kernel/early_printk.c
> +++ b/arch/x86/kernel/early_printk.c
> @@ -195,14 +195,14 @@ static __init void early_serial_init(char *s)
>  #ifdef CONFIG_PCI
>  static void mem32_serial_out(unsigned long addr, int offset, int 
> value)
>  {
> -	u32 *vaddr = (u32 *)addr;
> +	void __iomem *vaddr = (void __iomem *)addr;
>  	/* shift implied by pointer type */
>  	writel(value, vaddr + offset);
>  }
>  
>  static unsigned int mem32_serial_in(unsigned long addr, int offset)
>  {
> -	u32 *vaddr = (u32 *)addr;
> +	void __iomem *vaddr = (void __iomem *)addr;
>  	/* shift implied by pointer type */
>  	return readl(vaddr + offset);
>  }

-- 
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Intel Finland Oy
--
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/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v2 1/1] x86/early_printk: Use __iomem address space for IO Andy Shevchenko <andriy.shevchenko@linux.intel.com> - 2015-10-09 16:30 +0200
  Re: [PATCH v2 1/1] x86/early_printk: Use __iomem address space for  IO Andy Shevchenko <andriy.shevchenko@linux.intel.com> - 2015-10-09 16:40 +0200
  Re: [PATCH v2 1/1] x86/early_printk: Use __iomem address space for  IO Thomas Gleixner <tglx@linutronix.de> - 2015-10-11 21:20 +0200
    Re: [PATCH v2 1/1] x86/early_printk: Use __iomem address space for  IO Andy Shevchenko <andriy.shevchenko@linux.intel.com> - 2015-10-12 10:20 +0200
      Re: [PATCH v2 1/1] x86/early_printk: Use __iomem address space for  IO Thomas Gleixner <tglx@linutronix.de> - 2015-10-12 11:20 +0200

csiph-web