The patch titled Subject: drivers/rtc/rtc-isl12057.c: constify struct regmap_config has been removed from the -mm tree. Its filename was rtc-isl12057-constify-struct-regmap_config.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Krzysztof Kozlowski <k.kozlowski@xxxxxxxxxxx> Subject: drivers/rtc/rtc-isl12057.c: constify struct regmap_config The regmap_config struct may be const because it is not modified by the driver and regmap_init() accepts pointer to const. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/rtc/rtc-isl12057.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/rtc/rtc-isl12057.c~rtc-isl12057-constify-struct-regmap_config drivers/rtc/rtc-isl12057.c --- a/drivers/rtc/rtc-isl12057.c~rtc-isl12057-constify-struct-regmap_config +++ a/drivers/rtc/rtc-isl12057.c @@ -535,7 +535,7 @@ static const struct rtc_class_ops rtc_op .alarm_irq_enable = isl12057_rtc_alarm_irq_enable, }; -static struct regmap_config isl12057_rtc_regmap_config = { +static const struct regmap_config isl12057_rtc_regmap_config = { .reg_bits = 8, .val_bits = 8, }; _ Patches currently in -mm which might be from k.kozlowski@xxxxxxxxxxx are origin.patch linux-next.patch maintainers-add-entry-for-maxim-pmics-on-samsung-boards.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