Module Name:    src
Committed By:   skrll
Date:           Mon Dec  6 10:24:05 UTC 2010

Modified Files:
        src/sys/arch/hp700/dev: lcd.c

Log Message:
s/cannot/can't/ for consistency.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/hp700/dev/lcd.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/hp700/dev/lcd.c
diff -u src/sys/arch/hp700/dev/lcd.c:1.1 src/sys/arch/hp700/dev/lcd.c:1.2
--- src/sys/arch/hp700/dev/lcd.c:1.1	Tue Jun  1 10:20:29 2010
+++ src/sys/arch/hp700/dev/lcd.c	Mon Dec  6 10:24:04 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: lcd.c,v 1.1 2010/06/01 10:20:29 skrll Exp $	*/
+/*	$NetBSD: lcd.c,v 1.2 2010/12/06 10:24:04 skrll Exp $	*/
 /*	OpenBSD: lcd.c,v 1.2 2007/07/20 22:13:45 kettenis Exp 	*/
 
 /*
@@ -80,13 +80,13 @@
 
 	if (bus_space_map(sc->sc_iot, pdc_lcd->cmd_addr,
 		1, 0, &sc->sc_cmdh)) {
-		aprint_error(": cannot map cmd register\n");
+		aprint_error(": can't map cmd register\n");
 		return;
 	}
 
 	if (bus_space_map(sc->sc_iot, pdc_lcd->data_addr,
 		1, 0, &sc->sc_datah)) {
-		aprint_error(": cannot map data register\n");
+		aprint_error(": can't map data register\n");
 		bus_space_unmap(sc->sc_iot, sc->sc_cmdh, 1);
 		return;
 	}

Reply via email to