summaryrefslogtreecommitdiffstats
path: root/sys/dev/ncv
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-03-20 02:08:01 +0000
committeralfred <alfred@FreeBSD.org>2002-03-20 02:08:01 +0000
commit3264aec746947db8598130cb0ac382cf0b2a10cf (patch)
tree13b2f09af75205c81c286aaf60527ae3de623e14 /sys/dev/ncv
parente8f7a49843febbd1d96e06f28e56160c942029dd (diff)
downloadFreeBSD-src-3264aec746947db8598130cb0ac382cf0b2a10cf.zip
FreeBSD-src-3264aec746947db8598130cb0ac382cf0b2a10cf.tar.gz
Remove __P.
Diffstat (limited to 'sys/dev/ncv')
-rw-r--r--sys/dev/ncv/ncr53c500.c56
-rw-r--r--sys/dev/ncv/ncr53c500_pccard.c2
-rw-r--r--sys/dev/ncv/ncr53c500var.h8
3 files changed, 33 insertions, 33 deletions
diff --git a/sys/dev/ncv/ncr53c500.c b/sys/dev/ncv/ncr53c500.c
index 6a9b638..a3980a0 100644
--- a/sys/dev/ncv/ncr53c500.c
+++ b/sys/dev/ncv/ncr53c500.c
@@ -129,35 +129,35 @@ extern struct cfdriver ncv_cd;
* DECLARE
**************************************************************/
/* static */
-static void ncv_pio_read __P((struct ncv_softc *, u_int8_t *, u_int));
-static void ncv_pio_write __P((struct ncv_softc *, u_int8_t *, u_int));
-static int ncv_msg __P((struct ncv_softc *, struct targ_info *, u_int));
-static int ncv_reselected __P((struct ncv_softc *));
-static int ncv_disconnected __P((struct ncv_softc *, struct targ_info *));
-
-static __inline void ncvhw_set_count __P((bus_space_tag_t, bus_space_handle_t, int));
-static __inline u_int ncvhw_get_count __P((bus_space_tag_t, bus_space_handle_t));
-static __inline void ncvhw_select_register_0 __P((bus_space_tag_t, bus_space_handle_t, struct ncv_hw *));
-static __inline void ncvhw_select_register_1 __P((bus_space_tag_t, bus_space_handle_t, struct ncv_hw *));
-static __inline void ncvhw_fpush __P((bus_space_tag_t, bus_space_handle_t, u_int8_t *, int));
-
-static void ncv_pdma_end __P((struct ncv_softc *sc, struct targ_info *));
-static int ncv_world_start __P((struct ncv_softc *, int));
-static void ncvhw_bus_reset __P((struct ncv_softc *));
-static void ncvhw_reset __P((bus_space_tag_t, bus_space_handle_t, struct ncv_hw *));
-static int ncvhw_check __P((bus_space_tag_t, bus_space_handle_t, struct ncv_hw *));
-static void ncvhw_init __P((bus_space_tag_t, bus_space_handle_t, struct ncv_hw *));
-static int ncvhw_start_selection __P((struct ncv_softc *sc, struct slccb *));
-static void ncvhw_attention __P((struct ncv_softc *));
-static int ncv_ccb_nexus_establish __P((struct ncv_softc *));
-static int ncv_lun_nexus_establish __P((struct ncv_softc *));
-static int ncv_target_nexus_establish __P((struct ncv_softc *));
-static int ncv_targ_init __P((struct ncv_softc *, struct targ_info *, int));
-static int ncv_catch_intr __P((struct ncv_softc *));
+static void ncv_pio_read(struct ncv_softc *, u_int8_t *, u_int);
+static void ncv_pio_write(struct ncv_softc *, u_int8_t *, u_int);
+static int ncv_msg(struct ncv_softc *, struct targ_info *, u_int);
+static int ncv_reselected(struct ncv_softc *);
+static int ncv_disconnected(struct ncv_softc *, struct targ_info *);
+
+static __inline void ncvhw_set_count(bus_space_tag_t, bus_space_handle_t, int);
+static __inline u_int ncvhw_get_count(bus_space_tag_t, bus_space_handle_t);
+static __inline void ncvhw_select_register_0(bus_space_tag_t, bus_space_handle_t, struct ncv_hw *);
+static __inline void ncvhw_select_register_1(bus_space_tag_t, bus_space_handle_t, struct ncv_hw *);
+static __inline void ncvhw_fpush(bus_space_tag_t, bus_space_handle_t, u_int8_t *, int);
+
+static void ncv_pdma_end(struct ncv_softc *sc, struct targ_info *);
+static int ncv_world_start(struct ncv_softc *, int);
+static void ncvhw_bus_reset(struct ncv_softc *);
+static void ncvhw_reset(bus_space_tag_t, bus_space_handle_t, struct ncv_hw *);
+static int ncvhw_check(bus_space_tag_t, bus_space_handle_t, struct ncv_hw *);
+static void ncvhw_init(bus_space_tag_t, bus_space_handle_t, struct ncv_hw *);
+static int ncvhw_start_selection(struct ncv_softc *sc, struct slccb *);
+static void ncvhw_attention(struct ncv_softc *);
+static int ncv_ccb_nexus_establish(struct ncv_softc *);
+static int ncv_lun_nexus_establish(struct ncv_softc *);
+static int ncv_target_nexus_establish(struct ncv_softc *);
+static int ncv_targ_init(struct ncv_softc *, struct targ_info *, int);
+static int ncv_catch_intr(struct ncv_softc *);
#ifdef NCV_POWER_CONTROL
-static int ncvhw_power __P((struct ncv_softc *, u_int));
+static int ncvhw_power(struct ncv_softc *, u_int);
#endif /* NCV_POWER_CONTROL */
-static __inline void ncv_setup_and_start_pio __P((struct ncv_softc *, u_int));
+static __inline void ncv_setup_and_start_pio(struct ncv_softc *, u_int);
struct scsi_low_funcs ncv_funcs = {
SC_LOW_INIT_T ncv_world_start,
@@ -571,7 +571,7 @@ ncv_targ_init(sc, ti, action)
/**************************************************************
* General probe attach
**************************************************************/
-static int ncv_setup_img __P((struct ncv_hw *, u_int, int));
+static int ncv_setup_img(struct ncv_hw *, u_int, int);
static int
ncv_setup_img(hw, dvcfg, hostid)
diff --git a/sys/dev/ncv/ncr53c500_pccard.c b/sys/dev/ncv/ncr53c500_pccard.c
index 2ff3897..670965f 100644
--- a/sys/dev/ncv/ncr53c500_pccard.c
+++ b/sys/dev/ncv/ncr53c500_pccard.c
@@ -77,7 +77,7 @@
static int ncvprobe(DEVPORT_PDEVICE devi);
static int ncvattach(DEVPORT_PDEVICE devi);
-static void ncv_card_unload __P((DEVPORT_PDEVICE));
+static void ncv_card_unload(DEVPORT_PDEVICE);
/*
* Additional code for FreeBSD new-bus PCCard frontend
diff --git a/sys/dev/ncv/ncr53c500var.h b/sys/dev/ncv/ncr53c500var.h
index 2faa8c8..fd84b4f 100644
--- a/sys/dev/ncv/ncr53c500var.h
+++ b/sys/dev/ncv/ncr53c500var.h
@@ -90,10 +90,10 @@ struct ncv_targ_info {
/*****************************************************************
* Proto
*****************************************************************/
-int ncvprobesubr __P((bus_space_tag_t, bus_space_handle_t ioh, u_int, int));
-void ncvattachsubr __P((struct ncv_softc *));
-int ncvprint __P((void *, const char *));
-int ncvintr __P((void *));
+int ncvprobesubr(bus_space_tag_t, bus_space_handle_t ioh, u_int, int);
+void ncvattachsubr(struct ncv_softc *);
+int ncvprint(void *, const char *);
+int ncvintr(void *);
#if defined(i386)
#define SOFT_INTR_REQUIRED(slp) (softintr((slp)->sl_irq))
OpenPOWER on IntegriCloud