summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/alpha/isa/isa.c4
-rw-r--r--sys/amd64/isa/isa.c4
-rw-r--r--sys/ia64/isa/isa.c4
-rw-r--r--sys/sparc64/isa/isa.c4
4 files changed, 4 insertions, 12 deletions
diff --git a/sys/alpha/isa/isa.c b/sys/alpha/isa/isa.c
index f2054e7..469055e 100644
--- a/sys/alpha/isa/isa.c
+++ b/sys/alpha/isa/isa.c
@@ -169,9 +169,7 @@ isa_alloc_resource(device_t bus, device_t child, int type, int *rid,
u_long start, u_long end, u_long count, u_int flags)
{
/*
- * Consider adding a resource definition. We allow rid 0-1 for
- * irq and drq, 0-3 for memory and 0-7 for ports which is
- * sufficient for isapnp.
+ * Consider adding a resource definition.
*/
int passthrough = (device_get_parent(child) != bus);
int isdefault = (start == 0UL && end == ~0UL);
diff --git a/sys/amd64/isa/isa.c b/sys/amd64/isa/isa.c
index c87b2db..bf1ae4e 100644
--- a/sys/amd64/isa/isa.c
+++ b/sys/amd64/isa/isa.c
@@ -86,9 +86,7 @@ isa_alloc_resource(device_t bus, device_t child, int type, int *rid,
u_long start, u_long end, u_long count, u_int flags)
{
/*
- * Consider adding a resource definition. We allow rid 0-1 for
- * irq and drq, 0-3 for memory and 0-7 for ports which is
- * sufficient for isapnp.
+ * Consider adding a resource definition.
*/
int passthrough = (device_get_parent(child) != bus);
int isdefault = (start == 0UL && end == ~0UL);
diff --git a/sys/ia64/isa/isa.c b/sys/ia64/isa/isa.c
index b171a60..01b4c3d 100644
--- a/sys/ia64/isa/isa.c
+++ b/sys/ia64/isa/isa.c
@@ -97,9 +97,7 @@ isa_alloc_resource(device_t bus, device_t child, int type, int *rid,
u_long start, u_long end, u_long count, u_int flags)
{
/*
- * Consider adding a resource definition. We allow rid 0-1 for
- * irq and drq, 0-3 for memory and 0-7 for ports which is
- * sufficient for isapnp.
+ * Consider adding a resource definition.
*/
int passthrough = (device_get_parent(child) != bus);
int isdefault = (start == 0UL && end == ~0UL);
diff --git a/sys/sparc64/isa/isa.c b/sys/sparc64/isa/isa.c
index 502e9b1..6779150 100644
--- a/sys/sparc64/isa/isa.c
+++ b/sys/sparc64/isa/isa.c
@@ -202,9 +202,7 @@ isa_alloc_resource(device_t bus, device_t child, int type, int *rid,
u_long start, u_long end, u_long count, u_int flags)
{
/*
- * Consider adding a resource definition. We allow rid 0-1 for
- * irq and drq, 0-3 for memory and 0-7 for ports which is
- * sufficient for isapnp.
+ * Consider adding a resource definition.
*/
int passthrough = (device_get_parent(child) != bus);
int isdefault = (start == 0UL && end == ~0UL);
OpenPOWER on IntegriCloud