The patch titled bitops: rename for_each_bit() to for_each_set_bit(): arm has been removed from the -mm tree. Its filename was bitops-rename-for_each_bit-to-for_each_set_bit-arm.patch This patch was dropped because it is obsolete The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: bitops: rename for_each_bit() to for_each_set_bit(): arm From: Akinobu Mita <akinobu.mita@xxxxxxxxx> Rename for_each_bit to for_each_set_bit in the kernel source tree. To permit for_each_clear_bit(), should that ever be added. Suggested-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Suggested-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Akinobu Mita <akinobu.mita@xxxxxxxxx> Cc: "David S. Miller" <davem@xxxxxxxxxxxxx> Cc: Russell King <rmk@xxxxxxxxxxxxxxxx> Cc: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Cc: Artem Bityutskiy <dedekind@xxxxxxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/arm/mach-msm/pm.c | 2 +- arch/arm/mach-msm/pm2.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff -puN arch/arm/mach-msm/pm.c~bitops-rename-for_each_bit-to-for_each_set_bit-arm arch/arm/mach-msm/pm.c --- a/arch/arm/mach-msm/pm.c~bitops-rename-for_each_bit-to-for_each_set_bit-arm +++ a/arch/arm/mach-msm/pm.c @@ -764,7 +764,7 @@ static int msm_pm_read_proc( if (!off) { SNPRINTF(p, count, "Clocks against last TCXO shutdown:\n"); - for_each_bit(i, msm_pm_clocks_no_tcxo_shutdown, NR_CLKS) { + for_each_set_bit(i, msm_pm_clocks_no_tcxo_shutdown, NR_CLKS) { clk_name[0] = '\0'; msm_clock_get_name(i, clk_name, sizeof(clk_name)); SNPRINTF(p, count, " %s (id=%d)\n", clk_name, i); diff -puN arch/arm/mach-msm/pm2.c~bitops-rename-for_each_bit-to-for_each_set_bit-arm arch/arm/mach-msm/pm2.c --- a/arch/arm/mach-msm/pm2.c~bitops-rename-for_each_bit-to-for_each_set_bit-arm +++ a/arch/arm/mach-msm/pm2.c @@ -698,7 +698,7 @@ static int msm_pm_read_proc if (!off) { SNPRINTF(p, count, "Clocks against last TCXO shutdown:\n"); - for_each_bit(i, msm_pm_clocks_no_tcxo_shutdown, NR_CLKS) { + for_each_set_bit(i, msm_pm_clocks_no_tcxo_shutdown, NR_CLKS) { clk_name[0] = '\0'; msm_clock_get_name(i, clk_name, sizeof(clk_name)); SNPRINTF(p, count, " %s (id=%d)\n", clk_name, i); _ Patches currently in -mm which might be from akinobu.mita@xxxxxxxxx are sgi-gru-use-for_each_set_bit.patch linux-next.patch bitops-rename-for_each_bit-to-for_each_set_bit-arm.patch hpet-use-for_each_set_bit.patch intel-iommu-use-for_each_set_bit.patch bitops-rename-for_each_bit-to-for_each_set_bit-mtd.patch ntfs-use-bitmap_weight.patch phonet-use-for_each_set_bit.patch atm-use-for_each_set_bit.patch bitops-remove-temporary-for_each_bit.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