The patch titled Subject: rtc: abx805 depends on i2c has been removed from the -mm tree. Its filename was rtc-add-rtc-abx805-a-driver-for-the-abracon-ab-1805-i2c-rtc-fix.patch This patch was dropped because it was folded into rtc-add-rtc-abx805-a-driver-for-the-abracon-ab-1805-i2c-rtc.patch ------------------------------------------------------ From: Arnd Bergmann <arnd@xxxxxxxx> Subject: rtc: abx805 depends on i2c The recently added X805 rtc driver uses the i2c subsystem, but has no Kconfig dependency, so it can result in a build error when i2c is disabled: drivers/rtc/rtc-abx805.c: In function 'abx805_read_multiple_regs': drivers/rtc/rtc-abx805.c:55:2: error: implicit declaration of function 'i2c_transfer' [-Werror=implicit-function-declaration] This adds the obvious dependency. Fixes: 9033ab8ddd29 ("rtc: add rtc-abx805, a driver for the Abracon AB 1805 i2c rtc") Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Cc: Philippe De Muyter <phdm@xxxxxxxxx> Cc: Alessandro Zummo <a.zummo@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/rtc/Kconfig | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/rtc/Kconfig~rtc-add-rtc-abx805-a-driver-for-the-abracon-ab-1805-i2c-rtc-fix drivers/rtc/Kconfig --- a/drivers/rtc/Kconfig~rtc-add-rtc-abx805-a-driver-for-the-abracon-ab-1805-i2c-rtc-fix +++ a/drivers/rtc/Kconfig @@ -1083,6 +1083,7 @@ config RTC_DRV_AB8500 config RTC_DRV_ABX805 tristate "Abracon AB X805 RTC" + depends on I2C help Select this to enable support for the Abracon AB X805 RTC. AB X805 is the i2c flavour of the AB 18X5 family of ultra-low-power _ Patches currently in -mm which might be from arnd@xxxxxxxx are ocfs2-use-64bit-variables-to-track-heartbeat-time.patch i8k-remove-use-of-seq_printf-return-value.patch rtc-add-rtc-abx805-a-driver-for-the-abracon-ab-1805-i2c-rtc.patch linux-next.patch powerpc-oprofile-reduce-mmap_sem-hold-for-exe_file.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