From b54dd16b5a398e5328a74165a5147f40909bd76d Mon Sep 17 00:00:00 2001 From: scottl Date: Sun, 2 May 2004 00:27:54 +0000 Subject: Remove the bogus printing of the asr control device major number. Also rename the control device from rasr%d to asr%d. This starts us down the path of divorcing ourselves from a very bogus design in the management apps. Since the apps are open source now, they will likely be updated and fixed before 5.3. --- sys/dev/asr/asr.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sys/dev/asr') diff --git a/sys/dev/asr/asr.c b/sys/dev/asr/asr.c index 1c6bdac..f446a89 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 */ -- cgit v1.1