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 <[EMAIL PROTECTED]>
This patch adds simple increment on device interface counter
(it seems to be accidently missed)
Signed-off-by: Cyrill Gorcunov <[EMAIL PROTECTED]>
Cc: Kumar Gala <[EMAIL PROTECTED]>
Cc: Paul Mackerras <[EMAIL PROTECTED]>
Cc: Benjamin Herrenschmidt <[EMAIL PROTECTED]>
Cc: Olof Johansson <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
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 [EMAIL PROTECTED] 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 [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html