summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2000-12-07 22:19:06 +0000
committerphk <phk@FreeBSD.org>2000-12-07 22:19:06 +0000
commit8ae10410a695676e430db201496928e71af10cbc (patch)
treefa2487ac73dd5d75748c838adf7980c69082b3d8 /sys/dev
parenta16fcb08d3dbbaac77039427720a0a061ec1d319 (diff)
downloadFreeBSD-src-8ae10410a695676e430db201496928e71af10cbc.zip
FreeBSD-src-8ae10410a695676e430db201496928e71af10cbc.tar.gz
Add back some now needed #include <sys/systm.h>
Fix various warnings while here anyway.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/hea/eni_intr.c1
-rw-r--r--sys/dev/hea/eni_vcm.c1
-rw-r--r--sys/dev/hfa/fore_intr.c7
-rw-r--r--sys/dev/hfa/fore_load.c8
4 files changed, 5 insertions, 12 deletions
diff --git a/sys/dev/hea/eni_intr.c b/sys/dev/hea/eni_intr.c
index 4450627..f5f2f58 100644
--- a/sys/dev/hea/eni_intr.c
+++ b/sys/dev/hea/eni_intr.c
@@ -36,6 +36,7 @@
*/
#include <sys/param.h>
+#include <sys/systm.h>
#include <sys/socket.h>
#include <sys/syslog.h>
#include <net/if.h>
diff --git a/sys/dev/hea/eni_vcm.c b/sys/dev/hea/eni_vcm.c
index ec3cd55..0af1f32 100644
--- a/sys/dev/hea/eni_vcm.c
+++ b/sys/dev/hea/eni_vcm.c
@@ -37,6 +37,7 @@
#include <sys/param.h>
+#include <sys/systm.h>
#include <sys/socket.h>
#include <net/if.h>
#include <netatm/port.h>
diff --git a/sys/dev/hfa/fore_intr.c b/sys/dev/hfa/fore_intr.c
index eebc6ec..2193a51 100644
--- a/sys/dev/hfa/fore_intr.c
+++ b/sys/dev/hfa/fore_intr.c
@@ -157,13 +157,8 @@ fore_intr(arg)
/*
* Clear the device interrupt
*/
- switch (fup->fu_config.ac_device) {
-
- case DEV_FORE_PCA200E:
+ if (fup->fu_config.ac_device == DEV_FORE_PCA200E)
PCA200E_HCR_SET(*fup->fu_ctlreg, PCA200E_CLR_HBUS_INT);
- break;
-
- }
aap->aali_intr_sent = CP_WRITE(0);
/*
diff --git a/sys/dev/hfa/fore_load.c b/sys/dev/hfa/fore_load.c
index 7043345..be58689 100644
--- a/sys/dev/hfa/fore_load.c
+++ b/sys/dev/hfa/fore_load.c
@@ -499,18 +499,14 @@ fore_reset(fup)
if (fup->fu_ctlreg) {
- switch (fup->fu_config.ac_device) {
-
- case DEV_FORE_PCA200E:
+ if (fup->fu_config.ac_device == DEV_FORE_PCA200E) {
/*
* Reset i960 by setting and clearing RESET
*/
PCA200E_HCR_INIT(*fup->fu_ctlreg, PCA200E_RESET);
DELAY(10000);
PCA200E_HCR_CLR(*fup->fu_ctlreg, PCA200E_RESET);
- break;
-
- }
+ }
}
(void) splx(s);
OpenPOWER on IntegriCloud