The patch titled Subject: hwmon: (ina2xx) replace ina226_avg_bits() with find_closest() has been added to the -mm tree. Its filename is hwmon-ina2xx-replace-ina226_avg_bits-with-find_closest.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/hwmon-ina2xx-replace-ina226_avg_bits-with-find_closest.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/hwmon-ina2xx-replace-ina226_avg_bits-with-find_closest.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Bartosz Golaszewski <bgolaszewski@xxxxxxxxxxxx> Subject: hwmon: (ina2xx) replace ina226_avg_bits() with find_closest() Use find_closest() to locate the closest average in ina226_avg_tab. Signed-off-by: Bartosz Golaszewski <bgolaszewski@xxxxxxxxxxxx> Cc: Guenter Roeck <linux@xxxxxxxxxxxx> Cc: Steven Rostedt <rostedt@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/hwmon/ina2xx.c | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff -puN drivers/hwmon/ina2xx.c~hwmon-ina2xx-replace-ina226_avg_bits-with-find_closest drivers/hwmon/ina2xx.c --- a/drivers/hwmon/ina2xx.c~hwmon-ina2xx-replace-ina226_avg_bits-with-find_closest +++ a/drivers/hwmon/ina2xx.c @@ -36,6 +36,7 @@ #include <linux/jiffies.h> #include <linux/of.h> #include <linux/delay.h> +#include <linux/util_macros.h> #include <linux/platform_data/ina2xx.h> @@ -141,19 +142,6 @@ static const struct ina2xx_config ina2xx */ static const int ina226_avg_tab[] = { 1, 4, 16, 64, 128, 256, 512, 1024 }; -static int ina226_avg_bits(int avg) -{ - int i; - - /* Get the closest average from the tab. */ - for (i = 0; i < ARRAY_SIZE(ina226_avg_tab) - 1; i++) { - if (avg <= (ina226_avg_tab[i] + ina226_avg_tab[i + 1]) / 2) - break; - } - - return i; /* Return 0b0111 for values greater than 1024. */ -} - static int ina226_reg_to_interval(u16 config) { int avg = ina226_avg_tab[INA226_READ_AVG(config)]; @@ -171,7 +159,8 @@ static u16 ina226_interval_to_reg(int in avg = DIV_ROUND_CLOSEST(interval * 1000, INA226_TOTAL_CONV_TIME_DEFAULT); - avg_bits = ina226_avg_bits(avg); + avg_bits = find_closest(avg, ina226_avg_tab, + ARRAY_SIZE(ina226_avg_tab)); return (config & ~INA226_AVG_RD_MASK) | INA226_SHIFT_AVG(avg_bits); } _ Patches currently in -mm which might be from bgolaszewski@xxxxxxxxxxxx are util_macrosh-add-find_closest-macro.patch documentation-update-codingstyle-on-local-variables-naming-in-macros.patch hwmon-ina2xx-replace-ina226_avg_bits-with-find_closest.patch hwmon-lm85-use-find_closest-in-x_to_reg-functions.patch hwmon-w83795-use-find_closest_descending-in-pwm_freq_to_reg.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html