staging: comedi: mite: mite_io_addr and daq_io_addr are void __iomem *
authorH Hartley Sweeten <hartleys@visionengravers.com>
Tue, 8 May 2012 23:19:34 +0000 (16:19 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 9 May 2012 20:36:27 +0000 (13:36 -0700)
commit2b7a521b121ebc16b9137f07ded7874105c9486a
tree4a37d3f1292de8f6eb7d88adab98ad9eb78c7a2e
parenta19fb006c4d37b321712268b3937079973c730d6
staging: comedi: mite: mite_io_addr and daq_io_addr are void __iomem *

The mite_io_addr and daq_io_addr variables in struct mite_struct
are both ioremap'ed pci resources and should be void __iomem *
not void *.

This quiets a lot of sparse warings for the write[lwb],read[lwb]
calls in the comedi mite drives like:

warning: incorrect type in argument 1 (different address spaces)
   expected void const volatile [noderef] <asn:2>*addr
   got void *<noident>

warning: incorrect type in argument 2 (different address spaces)
   expected void volatile [noderef] <asn:2>*addr
   got void *

It also exposed some warnings in the mite ni_660x driver where
the daq_io_address was getting cast as a void *const.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Mori Hess <fmhess@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/mite.h
drivers/staging/comedi/drivers/ni_660x.c