From owner-freebsd-stable Sat Feb 14 00:58:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA20933 for freebsd-stable-outgoing; Sat, 14 Feb 1998 00:58:38 -0800 (PST) (envelope-from owner-freebsd-stable@FreeBSD.ORG) Received: from wo-ppp1.cs.titech.ac.jp (23.gate15.tokyo.att.ne.jp [165.76.19.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA20909; Sat, 14 Feb 1998 00:58:33 -0800 (PST) (envelope-from nagao@cs.titech.ac.jp) Received: from localhost (localhost [127.0.0.1]) by wo-ppp1.cs.titech.ac.jp (8.8.8/3.6W) with ESMTP id RAA22961; Sat, 14 Feb 1998 17:58:14 +0900 (JST) To: nate@mt.sri.com Cc: luigi@labinfo.iet.unipi.it, freebsd-stable@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG Subject: Re: Problems with new sound code? From: NAGAO -abtk- Tadaaki In-Reply-To: Your message of "Thu, 12 Feb 1998 13:42:00 -0700" <199802122042.NAA05488@mt.sri.com> References: <199802122042.NAA05488@mt.sri.com> X-Mailer: xcite1.19> Mew version 1.93b13 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19980214175812R.nagao@wo-ppp1.cs.titech.ac.jp> Date: Sat, 14 Feb 1998 17:58:12 +0900 (JST) X-Dispatcher: imput version 980210 Lines: 38 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk Hi, In message <199802122042.NAA05488@mt.sri.com>, nate@mt.sri.com (Nate Williams) as "nate" wrote: nate> [ nate> Luigi's sound-driver in -stable won't work, and couldn't have worked nate> since it contained the poll changes from -current. nate> ] Won't still compile in -stable if *DEVFS defined*. Since I'm not really using DEVFS though I always define DEVFS :-), the following patch which just "#if 0"-ify the unpleasant region makes me happy. :-) -- Tada NAGAO Tadaaki (nagao@cs.titech.ac.jp) Dept. of Computer Science, Tokyo Institute of Technology, Japan. --- sound.c.orig Fri Feb 13 07:48:45 1998 +++ sound.c Sat Feb 14 16:56:50 1998 @@ -214,6 +214,7 @@ isadev = makedev(CDEV_MAJOR, 0); cdevsw_add(&isadev, &snd_cdevsw, NULL); +#if 0 #ifdef DEVFS /* * XXX remember to store the returned tokens if you want to @@ -229,6 +230,7 @@ DV_CHR, UID_ROOT, GID_WHEEL, 0600, "mixer%n", dev->id_unit); devfs_add_devswf(&snd_cdevsw, (dev->id_unit << 4) | SND_DEV_STATUS, DV_CHR, UID_ROOT, GID_WHEEL, 0600, "status%n", dev->id_unit); +#endif #endif /* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message