Mark mgx_wait_host explicitly as unused.

This commit is contained in:
joerg 2016-02-25 17:09:39 +00:00
parent e1ae5a11b8
commit 65721537ef

View File

@ -1,4 +1,4 @@
/* $NetBSD: mgx.c,v 1.6 2016/02/11 20:53:06 macallan Exp $ */
/* $NetBSD: mgx.c,v 1.7 2016/02/25 17:09:39 joerg Exp $ */
/*-
* Copyright (c) 2014 Michael Lorenz
@ -29,7 +29,7 @@
/* a console driver for the SSB 4096V-MGX graphics card */
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: mgx.c,v 1.6 2016/02/11 20:53:06 macallan Exp $");
__KERNEL_RCSID(0, "$NetBSD: mgx.c,v 1.7 2016/02/25 17:09:39 joerg Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -104,7 +104,7 @@ static void mgx_init_palette(struct mgx_softc *);
static int mgx_putcmap(struct mgx_softc *, struct wsdisplay_cmap *);
static int mgx_getcmap(struct mgx_softc *, struct wsdisplay_cmap *);
static int mgx_wait_engine(struct mgx_softc *);
static int mgx_wait_host(struct mgx_softc *);
__unused static int mgx_wait_host(struct mgx_softc *);
static int mgx_wait_fifo(struct mgx_softc *, unsigned int);
static void mgx_bitblt(void *, int, int, int, int, int, int, int);