diff options
author | mdodd <mdodd@FreeBSD.org> | 1999-08-02 20:01:40 +0000 |
---|---|---|
committer | mdodd <mdodd@FreeBSD.org> | 1999-08-02 20:01:40 +0000 |
commit | 0281037004b1a1a8d9806b327ade0c650e96d2e3 (patch) | |
tree | 8a2c7df15002bf055eb2a06b8417a78947271435 | |
parent | c2207db8bb020c87d2b61b15cad58698232a3dc5 (diff) | |
download | FreeBSD-src-0281037004b1a1a8d9806b327ade0c650e96d2e3.zip FreeBSD-src-0281037004b1a1a8d9806b327ade0c650e96d2e3.tar.gz |
I'm not sure how this wasn't in the last commit but anyhow...
'int irq' -> 'struct irq_node *irq'
-rw-r--r-- | sys/dev/eisa/eisaconf.c | 4 | ||||
-rw-r--r-- | sys/i386/eisa/eisaconf.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/eisa/eisaconf.c b/sys/dev/eisa/eisaconf.c index dbf08d8..1aeb1df 100644 --- a/sys/dev/eisa/eisaconf.c +++ b/sys/dev/eisa/eisaconf.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: eisaconf.c,v 1.49 1999/07/30 13:54:00 mdodd Exp $ + * $Id: eisaconf.c,v 1.50 1999/08/01 22:57:09 mdodd Exp $ */ #include "opt_eisa.h" @@ -257,7 +257,7 @@ eisa_print_child(device_t dev, device_t child) char buf[81]; struct eisa_device * e_dev = device_get_ivars(child); int rid; - int irq; + struct irq_node * irq; struct resvaddr * resv; char separator = ','; int column = 0; diff --git a/sys/i386/eisa/eisaconf.c b/sys/i386/eisa/eisaconf.c index dbf08d8..1aeb1df 100644 --- a/sys/i386/eisa/eisaconf.c +++ b/sys/i386/eisa/eisaconf.c @@ -28,7 +28,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: eisaconf.c,v 1.49 1999/07/30 13:54:00 mdodd Exp $ + * $Id: eisaconf.c,v 1.50 1999/08/01 22:57:09 mdodd Exp $ */ #include "opt_eisa.h" @@ -257,7 +257,7 @@ eisa_print_child(device_t dev, device_t child) char buf[81]; struct eisa_device * e_dev = device_get_ivars(child); int rid; - int irq; + struct irq_node * irq; struct resvaddr * resv; char separator = ','; int column = 0; |