]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: comedi: adl_pci7x3x: fix pointer-to-int-cast warning
authorH Hartley Sweeten <hartleys@visionengravers.com>
Tue, 14 Aug 2012 20:45:53 +0000 (13:45 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 14 Aug 2012 23:46:34 +0000 (16:46 -0700)
This driver uses the void *private variable in the comedi_subdevice
to pass the offset needed to read/write the appropriate register to
get/set the channels for the subdevice.

The adl_pci7x3x_do_insn_bits() and adl_pci7x3x_di_insn_bits() functions
were retrieving this offset by casting the s->private value as an
unsigned int. On 64-bit builds this results in a warning:

warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]

Fix these warnings by casting the void * to an unsigned long.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reported-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/adl_pci7x3x.c

index 990670a3c5b1c61a01243e291775c94d43fd48e3..41963fba4fc2599d3f3e3ac28f6c68954ca87d85 100644 (file)
@@ -121,7 +121,7 @@ static int adl_pci7x3x_do_insn_bits(struct comedi_device *dev,
                                    struct comedi_insn *insn,
                                    unsigned int *data)
 {
-       unsigned int reg = (unsigned int)s->private;
+       unsigned long reg = (unsigned long)s->private;
        unsigned int mask = data[0];
        unsigned int bits = data[1];
 
@@ -147,7 +147,7 @@ static int adl_pci7x3x_di_insn_bits(struct comedi_device *dev,
                                    struct comedi_insn *insn,
                                    unsigned int *data)
 {
-       unsigned int reg = (unsigned int)s->private;
+       unsigned long reg = (unsigned long)s->private;
 
        data[1] = inl(dev->iobase + reg);