diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2010-04-10 17:30:00 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2010-04-10 17:30:00 +0000 |
commit | fd38d788bc6819af93a6742baa3719bd4117ee29 (patch) | |
tree | 05589e3fc4918e6212dc045263d982b049498385 | |
parent | 32c130a025864a1a71c2f2475011509e6e41771f (diff) |
grrr var names in protos
-rw-r--r-- | sys/dev/ic/mfi.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/sys/dev/ic/mfi.c b/sys/dev/ic/mfi.c index 6b3add01a7c..acd67bc88a0 100644 --- a/sys/dev/ic/mfi.c +++ b/sys/dev/ic/mfi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mfi.c,v 1.101 2010/04/10 17:26:10 marco Exp $ */ +/* $OpenBSD: mfi.c,v 1.102 2010/04/10 17:29:59 marco Exp $ */ /* * Copyright (c) 2006 Marco Peereboom <marco@peereboom.us> * @@ -109,10 +109,10 @@ void mfi_refresh_sensors(void *); void mfi_start(struct mfi_softc *, struct mfi_ccb *); void mfi_done(struct mfi_ccb *); -u_int32_t mfi_xscale_fw_state(struct mfi_softc *sc); -void mfi_xscale_intr_ena(struct mfi_softc *sc); -int mfi_xscale_intr(struct mfi_softc *sc); -void mfi_xscale_post(struct mfi_softc *sc, struct mfi_ccb *ccb); +u_int32_t mfi_xscale_fw_state(struct mfi_softc *); +void mfi_xscale_intr_ena(struct mfi_softc *); +int mfi_xscale_intr(struct mfi_softc *); +void mfi_xscale_post(struct mfi_softc *, struct mfi_ccb *); static const struct mfi_iop_ops mfi_iop_xscale = { mfi_xscale_fw_state, @@ -121,10 +121,10 @@ static const struct mfi_iop_ops mfi_iop_xscale = { mfi_xscale_post }; -u_int32_t mfi_ppc_fw_state(struct mfi_softc *sc); -void mfi_ppc_intr_ena(struct mfi_softc *sc); -int mfi_ppc_intr(struct mfi_softc *sc); -void mfi_ppc_post(struct mfi_softc *sc, struct mfi_ccb *ccb); +u_int32_t mfi_ppc_fw_state(struct mfi_softc *); +void mfi_ppc_intr_ena(struct mfi_softc *); +int mfi_ppc_intr(struct mfi_softc *); +void mfi_ppc_post(struct mfi_softc *, struct mfi_ccb *); static const struct mfi_iop_ops mfi_iop_ppc = { mfi_ppc_fw_state, @@ -133,10 +133,10 @@ static const struct mfi_iop_ops mfi_iop_ppc = { mfi_ppc_post }; -u_int32_t mfi_gen2_fw_state(struct mfi_softc *sc); -void mfi_gen2_intr_ena(struct mfi_softc *sc); -int mfi_gen2_intr(struct mfi_softc *sc); -void mfi_gen2_post(struct mfi_softc *sc, struct mfi_ccb *ccb); +u_int32_t mfi_gen2_fw_state(struct mfi_softc *); +void mfi_gen2_intr_ena(struct mfi_softc *); +int mfi_gen2_intr(struct mfi_softc *); +void mfi_gen2_post(struct mfi_softc *, struct mfi_ccb *); static const struct mfi_iop_ops mfi_iop_gen2 = { mfi_gen2_fw_state, |