diff options
author | mdodd <mdodd@FreeBSD.org> | 2003-03-29 15:38:53 +0000 |
---|---|---|
committer | mdodd <mdodd@FreeBSD.org> | 2003-03-29 15:38:53 +0000 |
commit | 61b476ad29a5ddcff43e7b5a5b747dca58778f6c (patch) | |
tree | f39bda079aeb693b4099561d7ba814d32a778c1b /sys/dev/ex/if_ex.c | |
parent | d9dea5bf86993ae431683f3e5fc9c7431c3f1146 (diff) | |
download | FreeBSD-src-61b476ad29a5ddcff43e7b5a5b747dca58778f6c.zip FreeBSD-src-61b476ad29a5ddcff43e7b5a5b747dca58778f6c.tar.gz |
- Declare ex_devclass in if_ex.c
- Rename module datastructures in if_ex_isa.c to be more standard.
Diffstat (limited to 'sys/dev/ex/if_ex.c')
-rw-r--r-- | sys/dev/ex/if_ex.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/ex/if_ex.c b/sys/dev/ex/if_ex.c index ac05a38..7988d0f 100644 --- a/sys/dev/ex/if_ex.c +++ b/sys/dev/ex/if_ex.c @@ -82,6 +82,8 @@ static int exintr_count = 0; # define DODEBUG(level, action) #endif +devclass_t ex_devclass; + char irq2eemap[] = { -1, -1, 0, 1, -1, 2, -1, -1, -1, 0, 3, 4, -1, -1, -1, -1 }; u_char ee2irqmap[] = |