diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2020-01-23 02:40:23 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2020-01-23 02:40:23 +0000 |
commit | 94c195c3601999a9f61b5f206c6c9ff29e3b0323 (patch) | |
tree | 92d3dc26e81e77208310c61b009ec7ef2d000a34 /sys/arch/loongson | |
parent | b39475a1faa6d7fd0b5bbcde94de3a490bd3a008 (diff) |
wire up pppac(4) to some majors on each arch.
i was lazy and just put them at the end of the existing set. fyi,
i think major 51 is free on all archs if anyone is looking for
another one.
ok claudio@
Diffstat (limited to 'sys/arch/loongson')
-rw-r--r-- | sys/arch/loongson/loongson/conf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/loongson/loongson/conf.c b/sys/arch/loongson/loongson/conf.c index ff0fa19e6de..e996376616d 100644 --- a/sys/arch/loongson/loongson/conf.c +++ b/sys/arch/loongson/loongson/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.27 2020/01/21 16:16:22 mpi Exp $ */ +/* $OpenBSD: conf.c,v 1.28 2020/01/23 02:40:21 dlg Exp $ */ /* * Copyright (c) 1992, 1993 @@ -226,6 +226,7 @@ struct cdevsw cdevsw[] = cdev_notdef(), /* 86 */ cdev_drm_init(NDRM,drm), /* 87: drm */ cdev_fido_init(NFIDO,fido), /* 88: FIDO/U2F security key */ + cdev_pppx_init(NPPPX,pppac), /* 89: PPP Access Concentrator */ }; int nchrdev = nitems(cdevsw); |