The patch titled Subject: rtc-add-driver-for-maxim-77802-pmic-real-time-clock-v10-fix has been removed from the -mm tree. Its filename was rtc-add-driver-for-maxim-77802-pmic-real-time-clock-v10-fix.patch This patch was dropped because it was folded into rtc-add-driver-for-maxim-77802-pmic-real-time-clock.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: rtc-add-driver-for-maxim-77802-pmic-real-time-clock-v10-fix add comment clarifying ffs() use Cc: Javier Martinez Canillas <javier.martinez@xxxxxxxxxxxxxxx> Cc: Krzysztof Kozlowski <k.kozlowski@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/rtc/rtc-max77802.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/rtc/rtc-max77802.c~rtc-add-driver-for-maxim-77802-pmic-real-time-clock-v10-fix drivers/rtc/rtc-max77802.c --- a/drivers/rtc/rtc-max77802.c~rtc-add-driver-for-maxim-77802-pmic-real-time-clock-v10-fix +++ a/drivers/rtc/rtc-max77802.c @@ -88,6 +88,7 @@ static void max77802_rtc_data_to_tm(u8 * tm->tm_hour += 12; } + /* Only a single bit is set in data[], so fls() would be equivalent */ tm->tm_wday = ffs(data[RTC_WEEKDAY] & 0xff) - 1; tm->tm_mday = data[RTC_DATE] & 0x1f; tm->tm_mon = (data[RTC_MONTH] & 0x0f) - 1; _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch mm-cma-fix-cma-bitmap-aligned-mask-computing.patch drivers-dma-coherent-add-initialization-from-device-tree.patch checkpatch-fix-spello.patch checkpatch-warn-on-logging-functions-with-kern_level.patch rtc-rk808-add-rtc-driver-for-rk808.patch rtc-bq32000-add-trickle-charger-option-with-device-tree-binding.patch rtc-max77686-use-ffs-to-calculate-tm_wday.patch rtc-add-driver-for-maxim-77802-pmic-real-time-clock.patch x86-optimize-resource-lookups-for-ioremap-fix.patch init-resolve-shadow-warnings-checkpatch-fixes.patch arch-x86-kernel-cpu-commonc-fix-unused-symbol-warning.patch mem-hotplug-fix-boot-failed-in-case-all-the-nodes-are-hotpluggable-checkpatch-fixes.patch lib-string_helpers-introduce-string_escape_mem-fix.patch lib-vsprintf-add-%pe-format-specifier-fix.patch wireless-hostap-proc-print-properly-escaped-ssid-fix.patch wireless-hostap-proc-print-properly-escaped-ssid-fix-2.patch watchdog-control-hard-lockup-detection-default-fix.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