The patch titled PPC: fix missed increment on device interface counter has been removed from the -mm tree. Its filename was ppc-fix-missed-increment-on-device-interface-counter.patch This patch was dropped because it is obsolete ------------------------------------------------------ Subject: PPC: fix missed increment on device interface counter From: Cyrill Gorcunov <gorcunov@xxxxxxxxx> This patch adds simple increment on device interface counter (it seems to be accidently missed) Signed-off-by: Cyrill Gorcunov <gorcunov@xxxxxxxxx> Cc: Kumar Gala <galak@xxxxxxxxxxxxxxxxx> Cc: Paul Mackerras <paulus@xxxxxxxxx> Cc: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Cc: Olof Johansson <olof@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/powerpc/platforms/pasemi/electra_ide.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN arch/powerpc/platforms/pasemi/electra_ide.c~ppc-fix-missed-increment-on-device-interface-counter arch/powerpc/platforms/pasemi/electra_ide.c --- a/arch/powerpc/platforms/pasemi/electra_ide.c~ppc-fix-missed-increment-on-device-interface-counter +++ a/arch/powerpc/platforms/pasemi/electra_ide.c @@ -40,9 +40,8 @@ static int __devinit electra_ide_init(vo int i; np = of_find_compatible_node(NULL, "ide", "electra-ide"); - i = 0; - while (np && i < MAX_IFS) { + for (i = 0; np && i < MAX_IFS; i++) { memset(r, 0, sizeof(r)); /* pata_platform wants two address ranges: one for the base registers, _ Patches currently in -mm which might be from gorcunov@xxxxxxxxx are git-powerpc.patch ppc-fix-missed-increment-on-device-interface-counter.patch net-mac80211-fix-inappropriate-memory-freeing.patch git-x86.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