r2062 - trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/patches

Sven Luther luther@haydn.debian.org
Sun, 26 Dec 2004 05:55:57 -0700


Author: luther
Date: 2004-12-26 05:55:52 -0700 (Sun, 26 Dec 2004)
New Revision: 2062

Modified:
   trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/patches/powerpc-pegasos-2.dpatch
Log:
And corrected another typo (extraneous i due to vi editing :)


Modified: trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/patches/powerpc-pegasos-2.dpatch
===================================================================
--- trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/patches/powerpc-pegasos-2.dpatch	2004-12-26 12:52:56 UTC (rev 2061)
+++ trunk/kernel/source/kernel-source-2.6.8-2.6.8/debian/patches/powerpc-pegasos-2.dpatch	2004-12-26 12:55:52 UTC (rev 2062)
@@ -219,9 +219,9 @@
 +	machine = get_property(root, "model", NULL);
 +	if (strncmp(machine, "Pegasos", 7) == 0) {
 +		_chrp_type = _CHRP_Pegasos;
-+	} else if (istrncmp(machine, "IBM", 3) == 0) {
++	} else if (strncmp(machine, "IBM", 3) == 0) {
 +		_chrp_type = _CHRP_IBM;
-+	} else if (istrncmp(machine, "MOT", 3) == 0) {
++	} else if (strncmp(machine, "MOT", 3) == 0) {
 +		_chrp_type = _CHRP_Motorola;
 +	} else {
 +		/* Let's assume it is an IBM chrp if all else fails */