The patch titled frv: Add missing qualifier to memcpy_fromio() prototype has been removed from the -mm tree. Its filename is frv-add-missing-qualifier-to-memcpy_fromio-prototype.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: frv: Add missing qualifier to memcpy_fromio() prototype From: Al Viro <viro@xxxxxxxxxxxxxxxxxx> The memcpy_fromio() function should have a const qualifier on its source pointer. Signed-off-by: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Signed-off-by: David Howells <dhowells@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/asm-frv/io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/asm-frv/io.h~frv-add-missing-qualifier-to-memcpy_fromio-prototype include/asm-frv/io.h --- a/include/asm-frv/io.h~frv-add-missing-qualifier-to-memcpy_fromio-prototype +++ a/include/asm-frv/io.h @@ -116,7 +116,7 @@ static inline void memset_io(volatile vo memset((void __force *) addr, val, count); } -static inline void memcpy_fromio(void *dst, volatile void __iomem *src, int count) +static inline void memcpy_fromio(void *dst, const volatile void __iomem *src, int count) { memcpy(dst, (void __force *) src, count); } _ Patches currently in -mm which might be from viro@xxxxxxxxxxxxxxxxxx are origin.patch kauditd_thread-warning-fix.patch kill-open-coded-offsetof-in-cm4000_csc-zero_dev.patch nbd-endian-annotations.patch ftruncate-does-not-always-update-m-ctime.patch affs_fill_super-%s-abuses-2.patch implement-at_symlink_follow-flag-for-linkat.patch task-watchers-register-audit-task-watcher.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