diff options
| author | matt <matt@NetBSD.org> | 2001-06-06 17:50:14 +0000 |
|---|---|---|
| committer | matt <matt@NetBSD.org> | 2001-06-06 17:50:14 +0000 |
| commit | 695e5e7ab54a06ae10a2fdf84a30caf63e4aa3f2 (patch) | |
| tree | 1180dc1eb4d7afbb32522e27d478b1015aac4658 /sys/arch/macppc/dev | |
| parent | f294982771784a3eb3a40acd4d4645132156b612 (diff) | |
Changes new pmap, common param.h, vmparam.h, and moved includes.
Diffstat (limited to 'sys/arch/macppc/dev')
| -rw-r--r-- | sys/arch/macppc/dev/ofb.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/macppc/dev/ofb.c b/sys/arch/macppc/dev/ofb.c index 500cf25758a..46d28a59739 100644 --- a/sys/arch/macppc/dev/ofb.c +++ b/sys/arch/macppc/dev/ofb.c @@ -1,4 +1,4 @@ -/* $NetBSD: ofb.c,v 1.18 2001/03/15 19:48:04 tsubai Exp $ */ +/* $NetBSD: ofb.c,v 1.19 2001/06/06 17:50:15 matt Exp $ */ /* * Copyright (c) 1995, 1996 Carnegie-Mellon University. @@ -48,8 +48,8 @@ #include <dev/ofw/ofw_pci.h> -#include <machine/bat.h> #include <machine/bus.h> +#include <powerpc/mpc6xx/bat.h> #include <machine/grfioctl.h> #include <macppc/dev/ofbvar.h> @@ -553,10 +553,12 @@ ofb_putcmap(sc, cm) g = &sc->sc_cmap_green[index]; b = &sc->sc_cmap_blue[index]; +#if 0 for (i = 0; i < count; i++) { OF_call_method_1("color!", dc->dc_ih, 4, *r, *g, *b, index); r++, g++, b++, index++; } +#endif return 0; } |
