diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2018-12-02 21:30:22 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2018-12-02 21:30:22 +0000 |
commit | 5e47ef172b417af126c1bbddf6f1bd43104723f5 (patch) | |
tree | 059b54e675ccf75bae708b53000a920d02e9879d /sys/dev | |
parent | e38aa2efde9f466895477610bebbf0b990df006b (diff) |
Include "com.h" to fix using a puc(4) based serial port as serial console
which was broken by the previous commit.
ok jsg@, mpi@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/puc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/puc.c b/sys/dev/pci/puc.c index 4d105db4531..2c5f3065177 100644 --- a/sys/dev/pci/puc.c +++ b/sys/dev/pci/puc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: puc.c,v 1.27 2018/11/05 15:13:56 kn Exp $ */ +/* $OpenBSD: puc.c,v 1.28 2018/12/02 21:30:21 kettenis Exp $ */ /* $NetBSD: puc.c,v 1.3 1999/02/06 06:29:54 cgd Exp $ */ /* @@ -65,6 +65,8 @@ #include <dev/ic/comreg.h> #include <dev/ic/comvar.h> +#include "com.h" + struct puc_pci_softc { struct puc_softc sc_psc; |