if (chip->mode)
                return sprintf(buf, "power-save\n");
-       else
-               return sprintf(buf, "full\n");
+       return sprintf(buf, "full\n");
 }
 
 static ssize_t ad7816_store_mode(struct device *dev,
                if (value < 0)
                        data = (1 << AD7816_TEMP_FLOAT_OFFSET) - data;
                return sprintf(buf, "%d.%.2d\n", value, data * 25);
-       } else
-               return sprintf(buf, "%u\n", data);
+       }
+       return sprintf(buf, "%u\n", data);
 }
 
 static IIO_DEVICE_ATTR(value, S_IRUGO, ad7816_show_value, NULL, 0);
                        (chip->oti_data[chip->channel_id] -
                        AD7816_BOUND_VALUE_BASE);
                return sprintf(buf, "%d\n", value);
-       } else
-               return sprintf(buf, "%u\n", chip->oti_data[chip->channel_id]);
+       }
+       return sprintf(buf, "%u\n", chip->oti_data[chip->channel_id]);
 }
 
 static inline ssize_t ad7816_set_oti(struct device *dev,