The patch titled drivers/parisc/lba_pci.c: fix faulty check has been added to the -mm tree. Its filename is drivers-parisc-lba_pcic-fix-faulty-check.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://userweb.kernel.org/~akpm/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: drivers/parisc/lba_pci.c: fix faulty check From: Stoyan Gaydarov <sgayda2@xxxxxxxx> Fix a spelling error that has resulted from copy and pasting. The location of the error was found using a semantic patch but the semantic patch was not trying to find these errors. After looking things over it seemed logical that this change was needed. Signed-off-by: Stoyan Gaydarov <sgayda2@xxxxxxxx> Cc: Kyle McMartin <kyle@xxxxxxxxxxx> Cc: Helge Deller <deller@xxxxxx> Cc: Grant Grundler <grundler@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/parisc/lba_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/parisc/lba_pci.c~drivers-parisc-lba_pcic-fix-faulty-check drivers/parisc/lba_pci.c --- a/drivers/parisc/lba_pci.c~drivers-parisc-lba_pcic-fix-faulty-check +++ a/drivers/parisc/lba_pci.c @@ -992,7 +992,7 @@ lba_pat_resources(struct parisc_device * return; io_pdc_cell = kzalloc(sizeof(pdc_pat_cell_mod_maddr_block_t), GFP_KERNEL); - if (!pa_pdc_cell) { + if (!io_pdc_cell) { kfree(pa_pdc_cell); return; } _ Patches currently in -mm which might be from sgayda2@xxxxxxxx are drivers-w1-masters-omap_hdqc-fix-missing-mutex-unlock.patch linux-next.patch drivers-parisc-lba_pcic-fix-faulty-check.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