diff options
| author | Scott Long <scottl@FreeBSD.org> | 2004-05-02 00:27:54 +0000 |
|---|---|---|
| committer | Scott Long <scottl@FreeBSD.org> | 2004-05-02 00:27:54 +0000 |
| commit | c371b99774be2bc55eae44bc6059575a5e01f214 (patch) | |
| tree | 58598bb0d6e1961cc24c85ce4a3650bfd23066c9 /sys | |
| parent | 2622aab4ae0a32b077b89c8e22d0853b79f2aafb (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/asr/asr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/asr/asr.c b/sys/dev/asr/asr.c index 1c6bdacdd4e1..f446a89e9f61 100644 --- a/sys/dev/asr/asr.c +++ b/sys/dev/asr/asr.c @@ -2246,7 +2246,6 @@ asr_attach(device_t tag) * engine (dptioctl.h) to pick up. */ bcopy(osrelease, &ASR_sig.dsDescription[16], 5); - printf("asr%d: major=%d\n", unit, asr_cdevsw.d_maj); } /* * Initialize the software structure @@ -2519,7 +2518,7 @@ asr_attach(device_t tag) * Generate the device node information */ sc->ha_devt = make_dev(&asr_cdevsw, unit, UID_ROOT, GID_OPERATOR, 0640, - "rasr%d", unit); + "asr%d", unit); sc->ha_devt->si_drv1 = sc; return(0); } /* asr_attach */ |
