The patch titled mfd: don't use memzero has been added to the -mm tree. Its filename is mfd-dont-use-memzero.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 *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: mfd: don't use memzero From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> For it doesn't exist on i386. Cc: Ian Molton <spyro@xxxxxxx> Cc: Dmitry Baryshkov <dbaryshkov@xxxxxxxxx> Cc: Russell King <rmk+kernel@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/mfd/mfd-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/mfd/mfd-core.c~mfd-dont-use-memzero drivers/mfd/mfd-core.c --- a/drivers/mfd/mfd-core.c~mfd-dont-use-memzero +++ a/drivers/mfd/mfd-core.c @@ -36,7 +36,7 @@ static int mfd_add_device(struct platfor if (ret) goto fail_device; - memzero(res, sizeof(res)); + memset(res, 0, sizeof(res)); for (r = 0; r < cell->num_resources; r++) { res[r].name = cell->resources[r].name; res[r].flags = cell->resources[r].flags; _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch mfd-dont-use-memzero.patch split-the-typecheck-macros-out-of-include-linux-kernelh.patch locking-add-typecheck-on-irqsave-and-friends-for-correct-flags.patch remove-apparently-unused-fd1772h-header-file.patch lib-allow-memparse-to-accept-a-null-and-ignorable-second-parm.patch build-kernel-profileo-only-when-requested-cleanups.patch seq_file-fix-bug-when-seq_read-reads-nothing.patch exec-remove-some-includes.patch inflate-refactor-inflate-malloc-code.patch drivers-misc-hpiloc-needs-config_pci.patch add-a-warn-macro-this-is-warn_on-printk-arguments.patch gpio-sysfs-interface-updated.patch gpio-add-bt8xxgpio-driver.patch jbd-fix-race-between-free-buffer-and-commit-trasanction.patch ext3-handle-corrupted-orphan-list-at-mount.patch ext3-handle-deleting-corrupted-indirect-blocks.patch jbd-dont-abort-if-flushing-file-data-failed.patch reiserfs-convert-j_flush_sem-to-mutex.patch reiserfs-convert-j_commit_lock-to-mutex.patch quota-move-function-macros-from-quotah-to-quotaopsh.patch cgroup_clone-use-pid-of-newly-created-task-for-new-cgroup.patch devcgroup-code-cleanup.patch memcg-remove-refcnt-from-page_cgroup.patch memcg-limit-change-shrink-usage.patch coredump-format_corename-fix-the-core_uses_pid-logic.patch workqueues-make-get_online_cpus-useable-for-work-func.patch ipc-semc-convert-undo-structures-to-struct-list_head.patch ipc-semc-convert-sem_arraysem_pending-to-struct-list_head.patch ipc-semc-rewrite-undo-list-locking.patch fs-partition-checkc-fix-return-value-warning.patch block-ioctlc-and-fs-partition-checkc.patch edac-mpc85xx-fix-pci-ofdev-2nd-pass.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