From: Laxman Dewangan Date: Fri, 20 Sep 2013 12:30:10 +0000 (+0530) Subject: regmap: add helper macro to set min/max range of register X-Git-Tag: next-20130927~28^2^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6112fe60ac1bd1e68da8cc4248289d6e48015f9b;p=karo-tx-linux.git regmap: add helper macro to set min/max range of register Add helper macro to set the min and max value of the register range. This is useful when initialising the register ranges of the device like static const struct regmap_range readable_ranges[] = { regmap_reg_range(DEVICE_REG0, DEVICE_REG10), }; Signed-off-by: Laxman Dewangan Signed-off-by: Mark Brown --- diff --git a/include/linux/regmap.h b/include/linux/regmap.h index a10380bfbeac..7d3ae2be6869 100644 --- a/include/linux/regmap.h +++ b/include/linux/regmap.h @@ -70,6 +70,8 @@ struct regmap_range { unsigned int range_max; }; +#define regmap_reg_range(low, high) { .range_min = low, .range_max = high, } + /* * A table of ranges including some yes ranges and some no ranges. * If a register belongs to a no_range, the corresponding check function