diff options
author | phk <phk@FreeBSD.org> | 2003-03-09 11:03:45 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-03-09 11:03:45 +0000 |
commit | 2fe1f6204d38d7d1423802fd525964774dae667c (patch) | |
tree | cfa97a9d4fdebe78406e688b9759ba8119bb7dfc /sys/dev/sab | |
parent | 3a6679ec745949833041f02adfc73f8672717e1e (diff) | |
download | FreeBSD-src-2fe1f6204d38d7d1423802fd525964774dae667c.zip FreeBSD-src-2fe1f6204d38d7d1423802fd525964774dae667c.tar.gz |
Note that MAJOR_AUTO is now the default if d_maj is not initialized. This
is more robust and prevents the hijacking of /dev/console for the typical
mistake.
Remove unneeded MAJOR_AUTO uses, it is only needed explicitly now if the
driver source has cross-branch compatibility to old releases.
Diffstat (limited to 'sys/dev/sab')
-rw-r--r-- | sys/dev/sab/sab.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/dev/sab/sab.c b/sys/dev/sab/sab.c index 362e8b7..0944637 100644 --- a/sys/dev/sab/sab.c +++ b/sys/dev/sab/sab.c @@ -167,7 +167,6 @@ static struct cdevsw sabtty_cdevsw = { .d_ioctl = sabttyioctl, .d_poll = ttypoll, .d_name = "sabtty", - .d_maj = MAJOR_AUTO, .d_flags = D_TTY, .d_kqfilter = ttykqfilter, }; |