Index: alpha/alpha/conf.c =================================================================== RCS file: /cvs/src/sys/arch/alpha/alpha/conf.c,v retrieving revision 1.85 diff -u -p -r1.85 conf.c --- alpha/alpha/conf.c 17 Dec 2019 13:08:54 -0000 1.85 +++ alpha/alpha/conf.c 23 Jan 2020 00:17:49 -0000 @@ -204,6 +204,7 @@ struct cdevsw cdevsw[] = cdev_tun_init(NTUN,tap), /* 68: Ethernet network tunnel */ cdev_switch_init(NSWITCH,switch), /* 69: switch(4) control interface */ cdev_fido_init(NFIDO,fido), /* 70: FIDO/U2F security key */ + cdev_pppx_init(NPPPX,pppac), /* 71: PPP Access Concentrator */ }; int nchrdev = nitems(cdevsw); Index: amd64/amd64/conf.c =================================================================== RCS file: /cvs/src/sys/arch/amd64/amd64/conf.c,v retrieving revision 1.66 diff -u -p -r1.66 conf.c --- amd64/amd64/conf.c 21 Jan 2020 16:16:22 -0000 1.66 +++ amd64/amd64/conf.c 23 Jan 2020 00:17:49 -0000 @@ -300,6 +300,7 @@ struct cdevsw cdevsw[] = cdev_ipmi_init(NIPMI,ipmi), /* 96: ipmi */ cdev_switch_init(NSWITCH,switch), /* 97: switch(4) control interface */ cdev_fido_init(NFIDO,fido), /* 98: FIDO/U2F security keys */ + cdev_pppx_init(NPPPX,pppac), /* 99: PPP Access Concentrator */ }; int nchrdev = nitems(cdevsw); Index: arm/arm/conf.c =================================================================== RCS file: /cvs/src/sys/arch/arm/arm/conf.c,v retrieving revision 1.53 diff -u -p -r1.53 conf.c --- arm/arm/conf.c 21 Jan 2020 16:16:22 -0000 1.53 +++ arm/arm/conf.c 23 Jan 2020 00:17:49 -0000 @@ -381,6 +381,7 @@ struct cdevsw cdevsw[] = { cdev_tun_init(NTUN,tap), /* 104: Ethernet tap */ cdev_switch_init(NSWITCH,switch), /* 105: switch(4) control interface */ cdev_fido_init(NFIDO,fido), /* 106: FIDO/U2F security key */ + cdev_pppx_init(NPPPX,pppac), /* 107: PPP Access Concentrator */ }; int nblkdev = nitems(bdevsw); Index: arm64/arm64/conf.c =================================================================== RCS file: /cvs/src/sys/arch/arm64/arm64/conf.c,v retrieving revision 1.11 diff -u -p -r1.11 conf.c --- arm64/arm64/conf.c 21 Jan 2020 16:16:22 -0000 1.11 +++ arm64/arm64/conf.c 23 Jan 2020 00:17:49 -0000 @@ -259,6 +259,7 @@ struct cdevsw cdevsw[] = cdev_ipmi_init(NIPMI,ipmi), /* 96: ipmi */ cdev_switch_init(NSWITCH,switch), /* 97: switch(4) control interface */ cdev_fido_init(NFIDO,fido), /* 98: FIDO/U2F security key */ + cdev_pppx_init(NPPPX,pppac), /* 99: PPP Access Concentrator */ }; int nchrdev = nitems(cdevsw); Index: hppa/hppa/conf.c =================================================================== RCS file: /cvs/src/sys/arch/hppa/hppa/conf.c,v retrieving revision 1.67 diff -u -p -r1.67 conf.c --- hppa/hppa/conf.c 17 Dec 2019 13:08:55 -0000 1.67 +++ hppa/hppa/conf.c 23 Jan 2020 00:17:49 -0000 @@ -188,6 +188,7 @@ struct cdevsw cdevsw[] = cdev_tun_init(NTUN,tap), /* 59: Ethernet network tunnel */ cdev_switch_init(NSWITCH,switch), /* 60: switch(4) control interface */ cdev_fido_init(NFIDO,fido), /* 61: FIDO/U2F security key */ + cdev_pppx_init(NPPPX,pppac), /* 62: PPP Access Concentrator */ }; int nchrdev = nitems(cdevsw); Index: i386/i386/conf.c =================================================================== RCS file: /cvs/src/sys/arch/i386/i386/conf.c,v retrieving revision 1.165 diff -u -p -r1.165 conf.c --- i386/i386/conf.c 21 Jan 2020 16:16:22 -0000 1.165 +++ i386/i386/conf.c 23 Jan 2020 00:17:49 -0000 @@ -293,6 +293,7 @@ struct cdevsw cdevsw[] = cdev_ipmi_init(NIPMI,ipmi), /* 96: ipmi */ cdev_switch_init(NSWITCH,switch), /* 97: switch(4) control interface */ cdev_fido_init(NFIDO,fido), /* 98: FIDO/U2F security key */ + cdev_pppx_init(NPPPX,pppac), /* 99: PPP Access Concentrator */ }; int nchrdev = nitems(cdevsw); Index: landisk/landisk/conf.c =================================================================== RCS file: /cvs/src/sys/arch/landisk/landisk/conf.c,v retrieving revision 1.40 diff -u -p -r1.40 conf.c --- landisk/landisk/conf.c 21 Jan 2020 16:16:22 -0000 1.40 +++ landisk/landisk/conf.c 23 Jan 2020 00:17:49 -0000 @@ -355,6 +355,7 @@ struct cdevsw cdevsw[] = { cdev_tun_init(NTUN,tap), /* 104: Ethernet network tap */ cdev_switch_init(NSWITCH,switch), /* 105: switch(4) control interface */ cdev_fido_init(NFIDO,fido), /* 106: FIDO/U2F security key */ + cdev_pppx_init(NPPPX,pppac), /* 107: PPP Access Concentrator */ }; int nblkdev = nitems(bdevsw); Index: loongson/loongson/conf.c =================================================================== RCS file: /cvs/src/sys/arch/loongson/loongson/conf.c,v retrieving revision 1.27 diff -u -p -r1.27 conf.c --- loongson/loongson/conf.c 21 Jan 2020 16:16:22 -0000 1.27 +++ loongson/loongson/conf.c 23 Jan 2020 00:17:49 -0000 @@ -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); Index: luna88k/luna88k/conf.c =================================================================== RCS file: /cvs/src/sys/arch/luna88k/luna88k/conf.c,v retrieving revision 1.32 diff -u -p -r1.32 conf.c --- luna88k/luna88k/conf.c 21 Jan 2020 16:16:23 -0000 1.32 +++ luna88k/luna88k/conf.c 23 Jan 2020 00:17:49 -0000 @@ -160,6 +160,7 @@ struct cdevsw cdevsw[] = cdev_pppx_init(NPPPX,pppx), /* 55: pppx */ cdev_tun_init(NTUN,tap), /* 56: Ethernet network tunnel */ cdev_switch_init(NSWITCH,switch), /* 57: switch(4) control interface */ + cdev_pppx_init(NPPPX,pppac), /* 58: PPP Access Concentrator */ }; int nchrdev = nitems(cdevsw); Index: macppc/macppc/conf.c =================================================================== RCS file: /cvs/src/sys/arch/macppc/macppc/conf.c,v retrieving revision 1.70 diff -u -p -r1.70 conf.c --- macppc/macppc/conf.c 21 Jan 2020 16:16:23 -0000 1.70 +++ macppc/macppc/conf.c 23 Jan 2020 00:17:49 -0000 @@ -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); Index: octeon/octeon/conf.c =================================================================== RCS file: /cvs/src/sys/arch/octeon/octeon/conf.c,v retrieving revision 1.23 diff -u -p -r1.23 conf.c --- octeon/octeon/conf.c 21 Jan 2020 16:16:23 -0000 1.23 +++ octeon/octeon/conf.c 23 Jan 2020 00:17:49 -0000 @@ -233,6 +233,7 @@ struct cdevsw cdevsw[] = cdev_tun_init(NTUN,tap), /* 74: Ethernet network tunnel */ cdev_switch_init(NSWITCH,switch), /* 75: switch(4) control interface */ cdev_fido_init(NFIDO,fido), /* 76: FIDO/U2F security key */ + cdev_pppx_init(NPPPX,pppac), /* 77: PPP Access Concentrator */ }; int nchrdev = nitems(cdevsw); Index: sgi/sgi/conf.c =================================================================== RCS file: /cvs/src/sys/arch/sgi/sgi/conf.c,v retrieving revision 1.41 diff -u -p -r1.41 conf.c --- sgi/sgi/conf.c 21 Jan 2020 16:16:23 -0000 1.41 +++ sgi/sgi/conf.c 23 Jan 2020 00:17:49 -0000 @@ -213,6 +213,7 @@ struct cdevsw cdevsw[] = cdev_tun_init(NTUN,tap), /* 74: Ethernet network tunnel */ cdev_switch_init(NSWITCH,switch), /* 75: switch(4) control interface */ cdev_fido_init(NFIDO,fido), /* 76: FIDO/U2F security key */ + cdev_pppx_init(NPPPX,pppac), /* 77: PPP Access Concentrator */ }; int nchrdev = nitems(cdevsw); Index: sparc64/sparc64/conf.c =================================================================== RCS file: /cvs/src/sys/arch/sparc64/sparc64/conf.c,v retrieving revision 1.82 diff -u -p -r1.82 conf.c --- sparc64/sparc64/conf.c 21 Jan 2020 16:16:23 -0000 1.82 +++ sparc64/sparc64/conf.c 23 Jan 2020 00:17:49 -0000 @@ -295,6 +295,7 @@ struct cdevsw cdevsw[] = cdev_tun_init(NTUN,tap), /* 135: Ethernet network tunnel */ cdev_switch_init(NSWITCH,switch), /* 136: switch(4) control interface */ cdev_fido_init(NFIDO,fido), /* 137: FIDO/U2F security key */ + cdev_pppx_init(NPPPX,pppac), /* 138: PPP Access Concentrator */ }; int nchrdev = nitems(cdevsw);