summaryrefslogtreecommitdiff
path: root/sys/dev/fb
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2004-01-02 10:46:38 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2004-01-02 10:46:38 +0000
commit2affa9f7b1bc5c1a6dc09d30d62cfb1c330072c6 (patch)
tree97ced71396b7db43b7cf89db674607c9d4e7610f /sys/dev/fb
parent75fcf8a7372314980bb8bce148a0e0224d84e498 (diff)
Notes
Diffstat (limited to 'sys/dev/fb')
-rw-r--r--sys/dev/fb/creator.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/fb/creator.c b/sys/dev/fb/creator.c
index 05cf570170fd..9bc0aed30444 100644
--- a/sys/dev/fb/creator.c
+++ b/sys/dev/fb/creator.c
@@ -292,11 +292,11 @@ creator_init(int unit, video_adapter_t *adp, int flags)
FFB_WRITE(sc, FFB_DAC, FFB_DAC_VALUE2, 0x0);
if (sc->sc_console) {
- col = NULL;
- row = NULL;
+ col = 0;
+ row = 0;
OF_interpret("stdout @ is my-self addr line# addr column# ",
2, &col, &row);
- if (col != NULL && row != NULL) {
+ if (col != 0 && row != 0) {
sc->sc_colp = (int *)(col + 4);
sc->sc_rowp = (int *)(row + 4);
}