]> Pileus Git - ~andy/linux/commitdiff
staging: comedi: store the 'index' for each subdevice
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Thu, 20 Dec 2012 00:27:02 +0000 (17:27 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 7 Jan 2013 22:28:19 +0000 (14:28 -0800)
Store the 'index' for each comedi_subdevice when they are initially
allocated by comedi_alloc_subdevice(). This allows removing the
pointer math in comedi_fops.c which is used to figure out the
index that user space uses to access the individual subdevices.

Fix the ni_mio_common driver so it also uses the 'index' instead
of doing the pointer math.

Also, remove a couple unused macros in the pcmda12, pcmmio, and
pcmuio drivers which also do the pointer math to figure out the
index.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/comedi_fops.c
drivers/staging/comedi/comedidev.h
drivers/staging/comedi/drivers.c
drivers/staging/comedi/drivers/ni_mio_common.c
drivers/staging/comedi/drivers/pcmda12.c
drivers/staging/comedi/drivers/pcmmio.c
drivers/staging/comedi/drivers/pcmuio.c

index dda47b161bcfcfee9d2b1d67770ed5da2cfebc8e..2fd577fa941e3424c306fbd523d11c437957ac5b 100644 (file)
@@ -169,7 +169,7 @@ static int resize_async_buffer(struct comedi_device *dev,
        }
 
        DPRINTK("comedi%i subd %d buffer resized to %i bytes\n",
-               dev->minor, (int)(s - dev->subdevices), async->prealloc_bufsz);
+               dev->minor, s->index, async->prealloc_bufsz);
        return 0;
 }
 
@@ -624,13 +624,13 @@ static int do_devinfo_ioctl(struct comedi_device *dev,
 
        s = comedi_read_subdevice(info);
        if (s)
-               devinfo.read_subdevice = s - dev->subdevices;
+               devinfo.read_subdevice = s->index;
        else
                devinfo.read_subdevice = -1;
 
        s = comedi_write_subdevice(info);
        if (s)
-               devinfo.write_subdevice = s - dev->subdevices;
+               devinfo.write_subdevice = s->index;
        else
                devinfo.write_subdevice = -1;
 
@@ -2398,7 +2398,7 @@ int comedi_alloc_subdevice_minor(struct comedi_device *dev,
        s->minor = i;
        csdev = device_create(comedi_class, dev->class_dev,
                              MKDEV(COMEDI_MAJOR, i), NULL, "comedi%i_subd%i",
-                             dev->minor, (int)(s - dev->subdevices));
+                             dev->minor, s->index);
        if (!IS_ERR(csdev))
                s->class_dev = csdev;
        dev_set_drvdata(csdev, info);
index 5127dc28d6f65b6eccdd0107290f68871fa540ff..259996483c666f2f26c0dc4529fec17aab963442 100644 (file)
@@ -77,6 +77,7 @@
 
 struct comedi_subdevice {
        struct comedi_device *device;
+       int index;
        int type;
        int n_chan;
        int subdev_flags;
index c0adc166d2b4f53507a915d121ef29d9635e479c..b67a0c9b149eb6aa19cf0dcb6a6989ed833cee36 100644 (file)
@@ -70,6 +70,7 @@ int comedi_alloc_subdevices(struct comedi_device *dev, int num_subdevices)
        for (i = 0; i < num_subdevices; ++i) {
                s = &dev->subdevices[i];
                s->device = dev;
+               s->index = i;
                s->async_dma_dir = DMA_NONE;
                spin_lock_init(&s->spin_lock);
                s->minor = -1;
index 81d7350be84f939cd7a5afa2db56944ce42ebf94..b7403597e9050e1f96a32b2d6592d092e6d120e8 100644 (file)
@@ -986,7 +986,7 @@ static void ni_event(struct comedi_device *dev, struct comedi_subdevice *s)
        if (s->
            async->events & (COMEDI_CB_ERROR | COMEDI_CB_OVERFLOW |
                             COMEDI_CB_EOA)) {
-               switch (s - dev->subdevices) {
+               switch (s->index) {
                case NI_AI_SUBDEV:
                        ni_ai_reset(dev, s);
                        break;
index 0882dafaf57bf229730f373dfba40b0fdaa518f9..48b049b7d36a2f646ed32812ef0c344c45bd17b2 100644 (file)
@@ -55,7 +55,6 @@ Configuration Options:
 
 #include <linux/pci.h>         /* for PCI devices */
 
-#define SDEV_NO ((int)(s - dev->subdevices))
 #define CHANS 8
 #define IOSIZE 16
 #define LSB(x) ((unsigned char)((x) & 0xff))
index 045f442019584757c60defa41063952c72f7da6b..d6d3d9584ea42fbe50c08a1a709703fa6bb54d95 100644 (file)
@@ -94,7 +94,6 @@ Configuration Options:
 #define INTR_PORTS_PER_SUBDEV (INTR_CHANS_PER_ASIC/CHANS_PER_PORT)
 #define MAX_DIO_CHANS   (PORTS_PER_ASIC*1*CHANS_PER_PORT)
 #define MAX_ASICS       (MAX_DIO_CHANS/CHANS_PER_ASIC)
-#define SDEV_NO ((int)(s - dev->subdevices))
 #define CALC_N_DIO_SUBDEVS(nchans) ((nchans)/MAX_CHANS_PER_SUBDEV + (!!((nchans)%MAX_CHANS_PER_SUBDEV)) /*+ (nchans > INTR_CHANS_PER_ASIC ? 2 : 1)*/)
 /* IO Memory sizes */
 #define ASIC_IOSIZE (0x0B)
index c61cc64ffc2e86d1fa6be6773d5a584595ca299d..b74431fba15179eb87bac38b44238ccfb5a24cf3 100644 (file)
@@ -92,7 +92,6 @@ Configuration Options:
 #define INTR_PORTS_PER_SUBDEV (INTR_CHANS_PER_ASIC/CHANS_PER_PORT)
 #define MAX_DIO_CHANS   (PORTS_PER_ASIC*2*CHANS_PER_PORT)
 #define MAX_ASICS       (MAX_DIO_CHANS/CHANS_PER_ASIC)
-#define SDEV_NO ((int)(s - dev->subdevices))
 #define CALC_N_SUBDEVS(nchans) ((nchans)/MAX_CHANS_PER_SUBDEV + (!!((nchans)%MAX_CHANS_PER_SUBDEV)) /*+ (nchans > INTR_CHANS_PER_ASIC ? 2 : 1)*/)
 /* IO Memory sizes */
 #define ASIC_IOSIZE (0x10)