m68knommu: fix arg types for outs* functions
authorGreg Ungerer <gerg@uclinux.org>
Mon, 20 Jan 2014 07:41:52 +0000 (17:41 +1000)
committerGreg Ungerer <gerg@uclinux.org>
Mon, 10 Mar 2014 23:38:22 +0000 (09:38 +1000)
commit4dc5aa2172373fe7ccc25bc22fc21fcf150a66c5
tree56528d14af1a373ba7b1c375c45a3f4dd0e00b4c
parentb6a8ebb59867d51b7cd60c81ffa497ac8ff682a9
m68knommu: fix arg types for outs* functions

Compiling for any m68knommu targets will give the following warnings:

  CC      lib/iomap_copy.o
lib/iomap.c: In function ‘iowrite8_rep’:
lib/iomap.c:213:2: warning: passing argument 2 of ‘io_outsb’ discards qualifiers from pointer target type
arch/m68k/include/asm/io_no.h:58:20: note: expected ‘void *’ but argument is of type ‘const void *’
lib/iomap.c: In function ‘iowrite16_rep’:
lib/iomap.c:217:2: warning: passing argument 2 of ‘io_outsw’ discards qualifiers from pointer target type
arch/m68k/include/asm/io_no.h:66:20: note: expected ‘void *’ but argument is of type ‘const void *’
lib/iomap.c: In function ‘iowrite32_rep’:
lib/iomap.c:221:2: warning: passing argument 2 of ‘io_outsl’ discards qualifiers from pointer target type
arch/m68k/include/asm/io_no.h:74:20: note: expected ‘void *’ but argument is of type ‘const void *’

Fix it by puting in the appropriate const qualifier on the buf argument of
the m68knommu outs* inline functions.

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
arch/m68k/include/asm/io_no.h