iio: inkern: Use max_array() to get the maximum value from an array
[sfrench/cifs-2.6.git] / drivers / iio / inkern.c
index 71d0424383b611cab47805a38bca05ece3da93c7..8bfd91f74101b45951e57dc70ba236ab41bd1937 100644 (file)
@@ -5,6 +5,7 @@
  */
 #include <linux/err.h>
 #include <linux/export.h>
+#include <linux/minmax.h>
 #include <linux/mutex.h>
 #include <linux/property.h>
 #include <linux/slab.h>
@@ -875,11 +876,7 @@ static int iio_channel_read_max(struct iio_channel *chan,
                        return -EINVAL;
                switch (*type) {
                case IIO_VAL_INT:
-                       *val = vals[--length];
-                       while (length) {
-                               if (vals[--length] > *val)
-                                       *val = vals[length];
-                       }
+                       *val = max_array(vals, length);
                        break;
                default:
                        /* FIXME: learn about max for other iio values */