The patch titled git-mmc: build fix has been removed from the -mm tree. Its filename was git-mmc-build-fix.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: git-mmc: build fix From: Frederik Deweerdt <deweerdt@xxxxxxx> drivers/mmc/mmc.c: In function 'mmc_lock_unlock': drivers/mmc/mmc.c:1527: error: dereferencing pointer to incomplete type drivers/mmc/mmc.c:1527: warning: type defaults to 'int' in declaration of '_________p1' drivers/mmc/mmc.c:1527: error: dereferencing pointer to incomplete type drivers/mmc/mmc.c:1527: warning: assignment makes pointer from integer without a cast That's because mmc_lock_unlock should depend on CONFIG_KEYS, it uses struct key. Could you try the following patch (compile tested)? Signed-off-by: Frederik Deweerdt <frederik.deweerdt@xxxxxxxxx> Cc: Pierre Ossman <drzeus@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/mmc/mmc.c | 4 ++++ 1 files changed, 4 insertions(+) diff -puN drivers/mmc/mmc.c~git-mmc-build-fix drivers/mmc/mmc.c --- a/drivers/mmc/mmc.c~git-mmc-build-fix +++ a/drivers/mmc/mmc.c @@ -1503,6 +1503,8 @@ static void mmc_setup(struct mmc_host *h mmc_process_ext_csds(host); } +#ifdef CONFIG_MMC_PASSWORDS + /** * mmc_lock_unlock - send LOCK_UNLOCK command to a specific card. * @card: card to which the LOCK_UNLOCK command should be sent @@ -1617,6 +1619,8 @@ out: return err; } +#endif /* CONFIG_MMC_PASSWORDS */ + /** * mmc_detect_change - process change of state on a MMC socket * @host: host which changed state. _ Patches currently in -mm which might be from deweerdt@xxxxxxx are git-acpi-early-acpi-lockup.patch remove-tcp-header-from-tcp_v4_check-take-2.patch disable-init-initramfsc-updated-fix.patch user-ns-prepare-copy_tree-copy_mnt-and-their-callers-to-handle-errs-fix.patch user-ns-implement-user-ns-unshare.patch reiser4-sb_sync_inodes-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