svn commit: r220126 - head/sys/isa
John Baldwin
jhb at FreeBSD.org
Tue Mar 29 12:38:13 UTC 2011
Author: jhb
Date: Tue Mar 29 12:38:13 2011
New Revision: 220126
URL: http://svn.freebsd.org/changeset/base/220126
Log:
- Enable an extra debugging bootverbose printf when probing ISA PNP cards
listing each card as it is found on non-PC98 (PC98 already had this).
- Increase the length of the DELAY() used before timing out while reading
PNP resource data.
Tested by: Steven Nikkel steven_nikkel ertyu org
MFC after: 1 week
Modified:
head/sys/isa/pnp.c
Modified: head/sys/isa/pnp.c
==============================================================================
--- head/sys/isa/pnp.c Tue Mar 29 11:54:22 2011 (r220125)
+++ head/sys/isa/pnp.c Tue Mar 29 12:38:13 2011 (r220126)
@@ -209,7 +209,7 @@ pnp_get_resource_info(u_char *buffer, in
for (j = 0; j < 100; j++) {
if ((inb((pnp_rd_port << 2) | 0x3)) & 0x1)
break;
- DELAY(1);
+ DELAY(10);
}
if (j == 100) {
printf("PnP device failed to report resource data\n");
@@ -743,10 +743,10 @@ pnp_isolation_protocol(device_t parent)
printf("A Normal-ISA-PnP card (%s).\n",
pnp_eisaformat(id.vendor_id));
}
+#endif
if (bootverbose)
printf("Reading PnP configuration for %s.\n",
pnp_eisaformat(id.vendor_id));
-#endif
error = pnp_read_resources(&resources, &space, &len);
if (error)
break;
More information about the svn-src-head
mailing list