};
 EXPORT_SYMBOL(iio_bus_type);
 
+static const char * const iio_data_type_name[] = {
+       [IIO_RAW] = "raw",
+       [IIO_PROCESSED] = "input",
+};
+
 static const char * const iio_chan_type_name_spec_shared[] = {
        [IIO_IN] = "in",
        [IIO_OUT] = "out",
                                indio_dev->event_interface, O_RDONLY);
 }
 
-static void iio_setup_ev_int(struct iio_event_interface *ev_int)
-{
-       mutex_init(&ev_int->event_list_lock);
-       /* discussion point - make this variable? */
-       ev_int->max_events = 10;
-       ev_int->current_events = 0;
-       INIT_LIST_HEAD(&ev_int->det_events);
-       init_waitqueue_head(&ev_int->wait);
-}
-
 static int __init iio_init(void)
 {
        int ret;
 {
        int ret, i;
 
-
        if (chan->channel < 0)
                return 0;
-       if (chan->processed_val)
-               ret = __iio_add_chan_devattr("input", NULL, chan,
-                                            &iio_read_channel_info,
-                                            NULL,
-                                            0,
-                                            0,
-                                            &dev_info->dev,
-                                            &dev_info->channel_attr_list);
-       else
-               ret = __iio_add_chan_devattr("raw", NULL, chan,
-                                            &iio_read_channel_info,
-                                            (chan->type == IIO_OUT ?
-                                            &iio_write_channel_info : NULL),
-                                            0,
-                                            0,
-                                            &dev_info->dev,
-                                            &dev_info->channel_attr_list);
+
+       ret = __iio_add_chan_devattr(iio_data_type_name[chan->processed_val],
+                                    NULL, chan,
+                                    &iio_read_channel_info,
+                                    (chan->type == IIO_OUT ?
+                                     &iio_write_channel_info : NULL),
+                                    0,
+                                    0,
+                                    &dev_info->dev,
+                                    &dev_info->channel_attr_list);
        if (ret)
                goto error_ret;
 
 static int iio_device_add_event_sysfs(struct iio_dev *dev_info,
                                      struct iio_chan_spec const *chan)
 {
-
        int ret = 0, i, mask = 0;
        char *postfix;
        if (!chan->event_mask)
 {
        int j;
        int ret;
+
        INIT_LIST_HEAD(&dev_info->event_interface->dev_attr_list);
        /* Dynically created from the channels array */
        for (j = 0; j < dev_info->num_channels; j++) {
-
                ret = iio_device_add_event_sysfs(dev_info,
                                                 &dev_info->channels[j]);
                if (ret)
 static bool iio_check_for_dynamic_events(struct iio_dev *dev_info)
 {
        int j;
+
        for (j = 0; j < dev_info->num_channels; j++)
                if (dev_info->channels[j].event_mask != 0)
                        return true;
        return false;
 }
 
+static void iio_setup_ev_int(struct iio_event_interface *ev_int)
+{
+       mutex_init(&ev_int->event_list_lock);
+       /* discussion point - make this variable? */
+       ev_int->max_events = 10;
+       ev_int->current_events = 0;
+       INIT_LIST_HEAD(&ev_int->det_events);
+       init_waitqueue_head(&ev_int->wait);
+}
+
 static int iio_device_register_eventset(struct iio_dev *dev_info)
 {
        int ret = 0;