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/macppc | |
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/macppc')
-rw-r--r-- | sys/arch/macppc/macppc/conf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/macppc/macppc/conf.c b/sys/arch/macppc/macppc/conf.c index 8907b7ce398..5885cdac2b6 100644 --- a/sys/arch/macppc/macppc/conf.c +++ b/sys/arch/macppc/macppc/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.70 2020/01/21 16:16:23 mpi Exp $ */ +/* $OpenBSD: conf.c,v 1.71 2020/01/23 02:40:21 dlg Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -229,6 +229,7 @@ struct cdevsw cdevsw[] = { cdev_fuse_init(NFUSE,fuse), /* 88: fuse */ cdev_switch_init(NSWITCH,switch), /* 89: switch(4) control interface */ cdev_fido_init(NFIDO,fido), /* 90: FIDO/U2F security key */ + cdev_pppx_init(NPPPX,pppac), /* 91: PPP Access Concentrator */ }; int nchrdev = nitems(cdevsw); |