The patch titled Subject: rtc: abx805 depends on i2c has been added to the -mm tree. Its filename is rtc-add-rtc-abx805-a-driver-for-the-abracon-ab-1805-i2c-rtc-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/rtc-add-rtc-abx805-a-driver-for-the-abracon-ab-1805-i2c-rtc-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/rtc-add-rtc-abx805-a-driver-for-the-abracon-ab-1805-i2c-rtc-fix.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: 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 origin.patch 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-fix.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