Change message "not supported" to "no driver assigned", because

people tend to assume their devices won't work if they see this
message, though it may indicate that those devices just don't
need any PCI driver (e.g. devices that emulate an ISA card, or
that have been initialised by the BIOS and need no further care).
This commit is contained in:
Stefan Eßer 1995-06-28 16:32:54 +00:00
parent 1f8ca7ddc4
commit c411726b79
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9363
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
/**************************************************************************
**
** $Id: pci.c,v 1.23 1995/05/30 08:13:09 rgrimes Exp $
** $Id: pci.c,v 1.24 1995/06/28 15:59:04 se Exp $
**
** General subroutines for the PCI bus.
** pci_configure ()
@ -1516,7 +1516,7 @@ void not_supported (pcici_t tag, u_long type)
if (data < sizeof(majclasses) / sizeof(majclasses[0]))
printf(", class=%s", majclasses[data]);
printf (" [not supported]\n");
printf (" [no driver assigned]\n");
for (reg=PCI_MAP_REG_START; reg<PCI_MAP_REG_END; reg+=4) {
data = pcibus->pb_read (tag, reg);

View File

@ -1,6 +1,6 @@
/**************************************************************************
**
** $Id: pci.c,v 1.23 1995/05/30 08:13:09 rgrimes Exp $
** $Id: pci.c,v 1.24 1995/06/28 15:59:04 se Exp $
**
** General subroutines for the PCI bus.
** pci_configure ()
@ -1516,7 +1516,7 @@ void not_supported (pcici_t tag, u_long type)
if (data < sizeof(majclasses) / sizeof(majclasses[0]))
printf(", class=%s", majclasses[data]);
printf (" [not supported]\n");
printf (" [no driver assigned]\n");
for (reg=PCI_MAP_REG_START; reg<PCI_MAP_REG_END; reg+=4) {
data = pcibus->pb_read (tag, reg);