Remove all the unsed members from the private data for the ni mio drivers.
The ao0p and ao1p members are only used in the ni_ao_reset() function and
the code is commented out. Remove them, and the commented out code, as well.
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        const struct ni_board_struct *board = comedi_board(dev);
        struct ni_private *devpriv = dev->private;
 
-       /* devpriv->ao0p=0x0000; */
-       /* ni_writew(devpriv->ao0p,AO_Configuration); */
-
-       /* devpriv->ao1p=AO_Channel(1); */
-       /* ni_writew(devpriv->ao1p,AO_Configuration); */
-
        ni_release_ao_mite_channel(dev);
 
        devpriv->stc_writew(dev, AO_Configuration_Start, Joint_Reset_Register);
 
 
        unsigned short dio_output;
        unsigned short dio_control;
-       int ao0p, ao1p;
-       int lastchan;
-       int last_do;
-       int rt_irq;
-       int irqmask;
        int aimode;
        int ai_continuous;
-       int blocksize;
-       int n_left;
        unsigned int ai_calib_source;
        unsigned int ai_calib_source_enabled;
        spinlock_t window_lock;
        unsigned short ao_mode3;
        unsigned short ao_cmd1;
        unsigned short ao_cmd2;
-       unsigned short ao_cmd3;
        unsigned short ao_trigger_select;
 
        struct ni_gpct_device *counter_dev;