The patch titled x86: fix compilation warning "discards qualifiers from pointer target type" in io_32.h has been removed from the -mm tree. Its filename was x86-fix-compilation-warning-discards-qualifiers-from-pointer-target-type-in-io_32h.patch This patch was dropped because it is obsolete The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: x86: fix compilation warning "discards qualifiers from pointer target type" in io_32.h From: "Rune V. Sjøen" <rvsjoen@xxxxxxxxx> Fixes compilation warning "discards qualifiers from pointer target type" in io_32.h Signed-off-by: "Rune V. Sjøen" <rvsjoen@xxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: "H. Peter Anvin" <hpa@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-x86/io_32.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/asm-x86/io_32.h~x86-fix-compilation-warning-discards-qualifiers-from-pointer-target-type-in-io_32h include/asm-x86/io_32.h --- a/include/asm-x86/io_32.h~x86-fix-compilation-warning-discards-qualifiers-from-pointer-target-type-in-io_32h +++ a/include/asm-x86/io_32.h @@ -154,7 +154,7 @@ memcpy_fromio(void *dst, const volatile static inline void memcpy_toio(volatile void __iomem *dst, const void *src, int count) { - __memcpy((void __force *)dst, src, count); + __memcpy((volatile void __force *)dst, src, count); } /* _ Patches currently in -mm which might be from rvsjoen@xxxxxxxxx are x86-fix-compilation-warning-discards-qualifiers-from-pointer-target-type-in-io_32h.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