diff options
| author | he <he@NetBSD.org> | 2008-04-10 09:05:53 +0000 |
|---|---|---|
| committer | he <he@NetBSD.org> | 2008-04-10 09:05:53 +0000 |
| commit | 7a931cc637d43406a7ce45be2fda8d73903fd4e3 (patch) | |
| tree | 1392075d19e2054ffe7261402189464eba6a0563 /sys/dev | |
| parent | db4cb7c623e0732e12ee549d0e4a2ab52e712041 (diff) | |
Remove a now-spurious & so that this builds again (for cobalt).
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ic/hd44780_subr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/hd44780_subr.c b/sys/dev/ic/hd44780_subr.c index c8709198201..de832ae4291 100644 --- a/sys/dev/ic/hd44780_subr.c +++ b/sys/dev/ic/hd44780_subr.c @@ -1,4 +1,4 @@ -/* $NetBSD: hd44780_subr.c,v 1.14 2008/04/08 12:07:26 cegger Exp $ */ +/* $NetBSD: hd44780_subr.c,v 1.15 2008/04/10 09:05:53 he Exp $ */ /* * Copyright (c) 2002 Dennis I. Chernoivanov @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: hd44780_subr.c,v 1.14 2008/04/08 12:07:26 cegger Exp $"); +__KERNEL_RCSID(0, "$NetBSD: hd44780_subr.c,v 1.15 2008/04/10 09:05:53 he Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -420,7 +420,7 @@ hd44780_attach_subr(sc) if ((sc->sc_flags & HD_UP) == 0) err = hd44780_init(sc); if (err != 0) - aprint_error_dev(&sc->sc_dev, "LCD not responding or unconnected\n"); + aprint_error_dev(sc->sc_dev, "LCD not responding or unconnected\n"); } |
