aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/cs/if_cs_isa.c
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2008-06-06 16:10:10 +0000
committerWarner Losh <imp@FreeBSD.org>2008-06-06 16:10:10 +0000
commit836fbcb34114dfc4cf5750c37fab469514456a88 (patch)
tree13d8f7c24054aea9602bb0f7dbe3423ba2786f7d /sys/dev/cs/if_cs_isa.c
parentec95e4c235c2f22c73d61d416fc7058ed062aa57 (diff)
downloadsrc-836fbcb34114dfc4cf5750c37fab469514456a88.tar.gz
src-836fbcb34114dfc4cf5750c37fab469514456a88.zip
Forgot to commit these files too :-(
Notes
Notes: svn path=/head/; revision=179618
Diffstat (limited to 'sys/dev/cs/if_cs_isa.c')
-rw-r--r--sys/dev/cs/if_cs_isa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/cs/if_cs_isa.c b/sys/dev/cs/if_cs_isa.c
index b08c1a23a723..2fabb7e2a074 100644
--- a/sys/dev/cs/if_cs_isa.c
+++ b/sys/dev/cs/if_cs_isa.c
@@ -78,7 +78,7 @@ cs_isa_probe(device_t dev)
end:
/* Make sure IRQ is assigned for probe message and available */
if (error == 0)
- error = cs_alloc_irq(dev, 0, 0);
+ error = cs_alloc_irq(dev, 0);
cs_release_resources(dev);
return (error);
@@ -90,7 +90,7 @@ cs_isa_attach(device_t dev)
struct cs_softc *sc = device_get_softc(dev);
cs_alloc_port(dev, 0, CS_89x0_IO_PORTS);
- cs_alloc_irq(dev, sc->irq_rid, 0);
+ cs_alloc_irq(dev, sc->irq_rid);
return (cs_attach(dev));
}