xadc_handle_event(indio_dev, i);
 }
 
-static unsigned xadc_get_threshold_offset(const struct iio_chan_spec *chan,
+static unsigned int xadc_get_threshold_offset(const struct iio_chan_spec *chan,
        enum iio_event_direction dir)
 {
        unsigned int offset;
 
 static unsigned int xadc_get_alarm_mask(const struct iio_chan_spec *chan)
 {
-       if (chan->type == IIO_TEMP) {
+       if (chan->type == IIO_TEMP)
                return XADC_ALARM_OT_MASK;
-       } else {
-               switch (chan->channel) {
-               case 0:
-                       return XADC_ALARM_VCCINT_MASK;
-               case 1:
-                       return XADC_ALARM_VCCAUX_MASK;
-               case 2:
-                       return XADC_ALARM_VCCBRAM_MASK;
-               case 3:
-                       return XADC_ALARM_VCCPINT_MASK;
-               case 4:
-                       return XADC_ALARM_VCCPAUX_MASK;
-               case 5:
-                       return XADC_ALARM_VCCODDR_MASK;
-               default:
-                       /* We will never get here */
-                       return 0;
-               }
+       switch (chan->channel) {
+       case 0:
+               return XADC_ALARM_VCCINT_MASK;
+       case 1:
+               return XADC_ALARM_VCCAUX_MASK;
+       case 2:
+               return XADC_ALARM_VCCBRAM_MASK;
+       case 3:
+               return XADC_ALARM_VCCPINT_MASK;
+       case 4:
+               return XADC_ALARM_VCCPAUX_MASK;
+       case 5:
+               return XADC_ALARM_VCCODDR_MASK;
+       default:
+               /* We will never get here */
+               return 0;
        }
 }
 
 
 };
 
 struct xadc_ops {
-       int (*read)(struct xadc *, unsigned int, uint16_t *);
-       int (*write)(struct xadc *, unsigned int, uint16_t);
+       int (*read)(struct xadc *xadc, unsigned int reg, uint16_t *val);
+       int (*write)(struct xadc *xadc, unsigned int reg, uint16_t val);
        int (*setup)(struct platform_device *pdev, struct iio_dev *indio_dev,
                        int irq);
-       void (*update_alarm)(struct xadc *, unsigned int);
-       unsigned long (*get_dclk_rate)(struct xadc *);
-       irqreturn_t (*interrupt_handler)(int, void *);
+       void (*update_alarm)(struct xadc *xadc, unsigned int alarm);
+       unsigned long (*get_dclk_rate)(struct xadc *xadc);
+       irqreturn_t (*interrupt_handler)(int irq, void *devid);
 
        unsigned int flags;
 };