Commit 4b44f810166fb83ad1a817ee599006a7157ee54c

Authored by Paolo Ciarrocchi
Committed by Ingo Molnar
1 parent e43eb7bab6

x86: coding style fixes in arch/x86/lib/io_64.c

This simple patch makes the file error free (according to
checkpatch.pl)

no code changed:

arch/x86/lib/io_64.o:
   text    data     bss     dec     hex filename
    308       0       0     308     134 io_64.o.before
    308       0       0     308     134 io_64.o.after
md5:
3c64f9ed83d091678e849b36ca27bee3  io_64.o.before.asm
3c64f9ed83d091678e849b36ca27bee3  io_64.o.after.asm

Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

Showing 1 changed file with 10 additions and 8 deletions Side-by-side Diff

arch/x86/lib/io_64.c
1 1 #include <linux/string.h>
2   -#include <asm/io.h>
3 2 #include <linux/module.h>
  3 +#include <asm/io.h>
4 4  
5   -void __memcpy_toio(unsigned long dst,const void*src,unsigned len)
  5 +void __memcpy_toio(unsigned long dst, const void *src, unsigned len)
6 6 {
7   - __inline_memcpy((void *) dst,src,len);
  7 + __inline_memcpy((void *)dst, src, len);
8 8 }
9 9 EXPORT_SYMBOL(__memcpy_toio);
10 10  
11   -void __memcpy_fromio(void *dst,unsigned long src,unsigned len)
  11 +void __memcpy_fromio(void *dst, unsigned long src, unsigned len)
12 12 {
13   - __inline_memcpy(dst,(const void *) src,len);
  13 + __inline_memcpy(dst, (const void *)src, len);
14 14 }
15 15 EXPORT_SYMBOL(__memcpy_fromio);
16 16  
17 17 void memset_io(volatile void __iomem *a, int b, size_t c)
18 18 {
19   - /* XXX: memset can mangle the IO patterns quite a bit.
20   - perhaps it would be better to use a dumb one */
21   - memset((void *)a,b,c);
  19 + /*
  20 + * TODO: memset can mangle the IO patterns quite a bit.
  21 + * perhaps it would be better to use a dumb one:
  22 + */
  23 + memset((void *)a, b, c);
22 24 }
23 25 EXPORT_SYMBOL(memset_io);