diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-07-06 14:35:46 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-07-06 14:35:46 +0000 |
commit | e8b291d72bdb3df83ea171eda13ed9d6c93dbed3 (patch) | |
tree | 3f43e19b6275adbcebe9943106a6579d10f3a6a4 /sys | |
parent | 2521e1262e2cbfb36369913880acf47247031812 (diff) |
s/wsemuldisplaysubmatch/wsemuldisplaydevsubmatch/g
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/wscons/wsdisplay.c | 4 | ||||
-rw-r--r-- | sys/dev/wscons/wsdisplayvar.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/wscons/wsdisplay.c b/sys/dev/wscons/wsdisplay.c index 9a87bbe33ae..bb260788ac3 100644 --- a/sys/dev/wscons/wsdisplay.c +++ b/sys/dev/wscons/wsdisplay.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wsdisplay.c,v 1.111 2013/07/05 21:18:32 kettenis Exp $ */ +/* $OpenBSD: wsdisplay.c,v 1.112 2013/07/06 14:35:45 kettenis Exp $ */ /* $NetBSD: wsdisplay.c,v 1.82 2005/02/27 00:27:52 perry Exp $ */ /* @@ -670,7 +670,7 @@ wsemuldisplaydevprint(void *aux, const char *pnp) /* Submatch function (for parent devices). */ int -wsemuldisplaysubmatch(struct device *parent, void *match, void *aux) +wsemuldisplaydevsubmatch(struct device *parent, void *match, void *aux) { extern struct cfdriver wsdisplay_cd; struct cfdata *cf = match; diff --git a/sys/dev/wscons/wsdisplayvar.h b/sys/dev/wscons/wsdisplayvar.h index ae4afc1739e..7fc38820c54 100644 --- a/sys/dev/wscons/wsdisplayvar.h +++ b/sys/dev/wscons/wsdisplayvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wsdisplayvar.h,v 1.25 2013/07/05 21:18:32 kettenis Exp $ */ +/* $OpenBSD: wsdisplayvar.h,v 1.26 2013/07/06 14:35:45 kettenis Exp $ */ /* $NetBSD: wsdisplayvar.h,v 1.30 2005/02/04 02:10:49 perry Exp $ */ /* @@ -167,7 +167,7 @@ struct wscons_syncops { void wsdisplay_cnattach(const struct wsscreen_descr *, void *, int, int, long); int wsemuldisplaydevprint(void *, const char *); -int wsemuldisplaysubmatch(struct device *, void *, void *); +int wsemuldisplaydevsubmatch(struct device *, void *, void *); /* * Console interface. |