diff options
Diffstat (limited to 'sys/arch/armv7/omap/omdisplay.c')
-rw-r--r-- | sys/arch/armv7/omap/omdisplay.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/armv7/omap/omdisplay.c b/sys/arch/armv7/omap/omdisplay.c index bb982a7d200..9a07ca093f7 100644 --- a/sys/arch/armv7/omap/omdisplay.c +++ b/sys/arch/armv7/omap/omdisplay.c @@ -1,4 +1,4 @@ -/* $OpenBSD: omdisplay.c,v 1.7 2020/05/25 06:45:25 jsg Exp $ */ +/* $OpenBSD: omdisplay.c,v 1.8 2020/05/25 09:55:48 jsg Exp $ */ /* * Copyright (c) 2007 Dale Rahn <drahn@openbsd.org> * @@ -443,7 +443,7 @@ void omdisplay_initialize(struct omdisplay_softc *sc, void omdisplay_setup_rasops(struct omdisplay_softc *sc, struct rasops_info *rinfo); int omdisplay_alloc_screen(void *v, const struct wsscreen_descr *_type, - void **cookiep, int *curxp, int *curyp, long *attrp); + void **cookiep, int *curxp, int *curyp, uint32_t *attrp); int omdisplay_new_screen(struct omdisplay_softc *sc, struct omdisplay_screen *scr, int depth); paddr_t omdisplay_mmap(void *v, off_t offset, int prot); @@ -1142,7 +1142,7 @@ omdisplay_setup_rasops(struct omdisplay_softc *sc, struct rasops_info *rinfo) int omdisplay_alloc_screen(void *v, const struct wsscreen_descr *_type, - void **cookiep, int *curxp, int *curyp, long *attrp) + void **cookiep, int *curxp, int *curyp, uint32_t *attrp) { struct omdisplay_softc *sc = v; struct omdisplay_screen *scr; |