Removed changes to comments in .S files -- gcc does not like apostrophes
in assembler comments.
This fixes:
couldnt -> couldn't (4 occurrences)
diff -ur a/arch/i386/kernel/smpboot.c b/arch/i386/kernel/smpboot.c
--- a/arch/i386/kernel/smpboot.c Mon Feb 24 11:05:31 2003
smp_tune_scheduling();
/*
- * If we couldnt find an SMP configuration at boot time,
+ * If we couldn't find an SMP configuration at boot time,
* get out of here now!
*/
if (!smp_found_config) {
diff -ur a/arch/x86_64/kernel/smpboot.c b/arch/x86_64/kernel/smpboot.c
--- a/arch/x86_64/kernel/smpboot.c Mon Feb 24 11:06:02 2003
}
/*
- * If we couldnt find an SMP configuration at boot time,
+ * If we couldn't find an SMP configuration at boot time,
* get out of here now!
*/
if (!smp_found_config) {
diff -ur a/drivers/md/md.c b/drivers/md/md.c
--- a/drivers/md/md.c Mon Feb 24 11:05:14 2003
}
err = set_array_info(mddev, &info);
if (err) {
- printk(KERN_WARNING "md: couldnt set array info. %d\n", err);
+ printk(KERN_WARNING "md: couldn't set array info. %d\n", err);
goto abort_unlock;
}
}
diff -ur a/drivers/usb/media/konicawc.c b/drivers/usb/media/konicawc.c
--- a/drivers/usb/media/konicawc.c Mon Feb 24 11:05:04 2003
}
if(newsize > MAX_FRAME_SIZE) {
- DEBUG(1, "couldnt find size %d,%d", x, y);
+ DEBUG(1, "couldn't find size %d,%d", x, y);
return -EINVAL;
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/