diff options
author | sos <sos@FreeBSD.org> | 1995-03-30 14:33:03 +0000 |
---|---|---|
committer | sos <sos@FreeBSD.org> | 1995-03-30 14:33:03 +0000 |
commit | 274733f38b3e5170ba18a836498c3aff4dc10264 (patch) | |
tree | 8bd972fb7af9a49a2ce67f1df4459b6f4e6f2bd2 /sys | |
parent | a867f0c357180509175ca71f1c0bfaefac2d3a54 (diff) | |
download | FreeBSD-src-274733f38b3e5170ba18a836498c3aff4dc10264.zip FreeBSD-src-274733f38b3e5170ba18a836498c3aff4dc10264.tar.gz |
Fix probe message printing
Diffstat (limited to 'sys')
-rw-r--r-- | sys/i386/isa/pcaudio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/pcaudio.c b/sys/i386/isa/pcaudio.c index 368c279..c8a6237 100644 --- a/sys/i386/isa/pcaudio.c +++ b/sys/i386/isa/pcaudio.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcaudio.c,v 1.10 1994/10/27 08:03:12 sos Exp $ + * $Id: pcaudio.c,v 1.11 1994/11/06 00:46:21 bde Exp $ */ #include "pca.h" @@ -249,7 +249,7 @@ pca_registerdev(struct isa_device *id) int pcaattach(struct isa_device *dvp) { - printf(" PC speaker audio driver\n"); + printf("pca%d: PC speaker audio driver\n", dvp->id_unit); pca_init(); pca_registerdev(dvp); return 1; |