diff options
-rw-r--r-- | sys/conf/majors | 1 | ||||
-rw-r--r-- | sys/dev/ctau/if_ct.c | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/sys/conf/majors b/sys/conf/majors index f58806a..71d345a 100644 --- a/sys/conf/majors +++ b/sys/conf/majors @@ -61,7 +61,6 @@ 125 digio Advantech PCI-1750 IO card jen@vulture.dmem.strath.ac.uk 126 sync Generic sync port support <phk>, <brian> 128 arla Arla (AFS-clone) driver -134 cp Cronyx Tau-PCI synchronous WAN adapters 136 ipr Iprobe on-chip perf. counters (gallatin@freebsd.org) 137 nfp nFast PCI crypto accelerator (support@ncipher.com) 139 wanrouter Sangoma Technologies Inc. (al.feldman@sangoma.com) diff --git a/sys/dev/ctau/if_ct.c b/sys/dev/ctau/if_ct.c index b18dc94..dafeb46 100644 --- a/sys/dev/ctau/if_ct.c +++ b/sys/dev/ctau/if_ct.c @@ -98,8 +98,6 @@ SYSCTL_INT(_debug_ctau, OID_AUTO, mpsafenet, CTLFLAG_RD, &ct_mpsafenet, 0, mtx_assert (&(_bd)->ct_mtx, MA_OWNED); \ } while (0) -#define CDEV_MAJOR 99 - static void ct_identify __P((driver_t *, device_t)); static int ct_probe __P((device_t)); static int ct_attach __P((device_t)); @@ -1736,7 +1734,6 @@ static struct cdevsw ct_cdevsw = { .d_close = ct_close, .d_ioctl = ct_ioctl, .d_name = "ct", - .d_maj = CDEV_MAJOR, .d_flags = D_NEEDGIANT, }; |