summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>1998-02-27 06:39:32 +0000
committermsmith <msmith@FreeBSD.org>1998-02-27 06:39:32 +0000
commite3c9e3f7a531b41c14c59fca665843da47479f3a (patch)
tree144bf295cef91cb605b1b0acb8df7ee397a2aa41
parentb9bd84eca627689a764b328fac802c1c151d91c6 (diff)
downloadFreeBSD-src-e3c9e3f7a531b41c14c59fca665843da47479f3a.zip
FreeBSD-src-e3c9e3f7a531b41c14c59fca665843da47479f3a.tar.gz
PCCARD-code related style nits, as requested.
Submitted by: bde
-rw-r--r--sys/dev/ed/if_ed.c28
-rw-r--r--sys/dev/fe/if_fe.c8
-rw-r--r--sys/dev/sio/sio.c8
-rw-r--r--sys/i386/isa/if_ed.c28
-rw-r--r--sys/i386/isa/if_fe.c8
-rw-r--r--sys/i386/isa/sio.c8
-rw-r--r--sys/isa/sio.c8
7 files changed, 48 insertions, 48 deletions
diff --git a/sys/dev/ed/if_ed.c b/sys/dev/ed/if_ed.c
index 17e4bc7..b46ccd5 100644
--- a/sys/dev/ed/if_ed.c
+++ b/sys/dev/ed/if_ed.c
@@ -24,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: if_ed.c,v 1.133 1998/02/06 12:13:15 eivind Exp $
+ * $Id: if_ed.c,v 1.134 1998/02/27 05:38:28 msmith Exp $
*/
/*
@@ -173,31 +173,31 @@ void *ed_attach_NE2000_pci __P((int, int));
static int ed_probe_pccard __P((struct isa_device *, u_char *));
#endif
-static void ds_getmcaf __P((struct ed_softc *, u_long *));
+static void ds_getmcaf __P((struct ed_softc *, u_long *));
-static void ed_get_packet(struct ed_softc *, char *, /* u_short */ int, int);
+static void ed_get_packet __P((struct ed_softc *, char *, /* u_short */ int, int));
-static void ed_rint __P((struct ed_softc *));
-static void ed_xmit __P((struct ed_softc *));
-static char * ed_ring_copy __P((struct ed_softc *, char *, char *,
+static void ed_rint __P((struct ed_softc *));
+static void ed_xmit __P((struct ed_softc *));
+static char * ed_ring_copy __P((struct ed_softc *, char *, char *,
/* u_short */ int));
static void ed_hpp_set_physical_link __P((struct ed_softc *));
-static void ed_hpp_readmem __P((struct ed_softc *, int, unsigned char *,
+static void ed_hpp_readmem __P((struct ed_softc *, int, unsigned char *,
/* u_short */ int));
static u_short ed_hpp_write_mbufs __P((struct ed_softc *, struct mbuf *,
int));
-static void ed_pio_readmem __P((struct ed_softc *, int, unsigned char *,
+static void ed_pio_readmem __P((struct ed_softc *, int, unsigned char *,
/* u_short */ int));
-static void ed_pio_writemem __P((struct ed_softc *, char *,
+static void ed_pio_writemem __P((struct ed_softc *, char *,
/* u_short */ int, /* u_short */ int));
static u_short ed_pio_write_mbufs __P((struct ed_softc *, struct mbuf *,
int));
void edintr_sc __P((struct ed_softc *));
-static void ed_setrcr(struct ed_softc *);
+static void ed_setrcr __P((struct ed_softc *));
-static u_long ds_crc(u_char *ep);
+static u_long ds_crc __P((u_char *ep));
#if (NCARD > 0) || (NPNP > 0)
#include <sys/kernel.h>
@@ -210,9 +210,9 @@ static u_long ds_crc(u_char *ep);
/*
* PC-Card (PCMCIA) specific code.
*/
-static int edinit(struct pccard_devinfo *); /* init device */
-static void edunload(struct pccard_devinfo *); /* Disable driver */
-static int card_intr(struct pccard_devinfo *); /* Interrupt handler */
+static int edinit __P((struct pccard_devinfo *));
+static void edunload __P((struct pccard_devinfo *));
+static int card_intr __P((struct pccard_devinfo *));
static struct pccard_device ed_info = {
"ed",
diff --git a/sys/dev/fe/if_fe.c b/sys/dev/fe/if_fe.c
index 0ce73b7..462d1a5 100644
--- a/sys/dev/fe/if_fe.c
+++ b/sys/dev/fe/if_fe.c
@@ -21,7 +21,7 @@
*/
/*
- * $Id: if_fe.c,v 1.37 1998/01/08 23:40:53 eivind Exp $
+ * $Id: if_fe.c,v 1.38 1998/02/27 05:38:31 msmith Exp $
*
* Device driver for Fujitsu MB86960A/MB86965A based Ethernet cards.
* To be used with FreeBSD 2.x
@@ -326,9 +326,9 @@ outblk ( struct fe_softc * sc, int offs, u_char const * mem, int len )
/*
* PC-Card (PCMCIA) specific code.
*/
-static int feinit(struct pccard_devinfo *); /* init device */
-static void feunload(struct pccard_devinfo *); /* Disable driver */
-static int fe_card_intr(struct pccard_devinfo *); /* Interrupt handler */
+static int feinit (struct pccard_devinfo *);
+static void feunload (struct pccard_devinfo *);
+static int fe_card_intr (struct pccard_devinfo *);
static struct pccard_device fe_info = {
"fe",
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c
index b5aad90..9ac8889 100644
--- a/sys/dev/sio/sio.c
+++ b/sys/dev/sio/sio.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
- * $Id: sio.c,v 1.197 1998/02/14 16:17:17 nate Exp $
+ * $Id: sio.c,v 1.198 1998/02/27 05:38:32 msmith Exp $
*/
#include "opt_comconsole.h"
@@ -481,9 +481,9 @@ SYSCTL_PROC(_machdep, OID_AUTO, conspeed, CTLTYPE_INT | CTLFLAG_RW,
/*
* PC-Card (PCMCIA) specific code.
*/
-static int sioinit(struct pccard_devinfo *); /* init device */
-static void siounload(struct pccard_devinfo *); /* Disable driver */
-static int card_intr(struct pccard_devinfo *); /* Interrupt handler */
+static int sioinit __P((struct pccard_devinfo *));
+static void siounload __P((struct pccard_devinfo *));
+static int card_intr __P((struct pccard_devinfo *));
static struct pccard_device sio_info = {
driver_name,
diff --git a/sys/i386/isa/if_ed.c b/sys/i386/isa/if_ed.c
index 17e4bc7..b46ccd5 100644
--- a/sys/i386/isa/if_ed.c
+++ b/sys/i386/isa/if_ed.c
@@ -24,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: if_ed.c,v 1.133 1998/02/06 12:13:15 eivind Exp $
+ * $Id: if_ed.c,v 1.134 1998/02/27 05:38:28 msmith Exp $
*/
/*
@@ -173,31 +173,31 @@ void *ed_attach_NE2000_pci __P((int, int));
static int ed_probe_pccard __P((struct isa_device *, u_char *));
#endif
-static void ds_getmcaf __P((struct ed_softc *, u_long *));
+static void ds_getmcaf __P((struct ed_softc *, u_long *));
-static void ed_get_packet(struct ed_softc *, char *, /* u_short */ int, int);
+static void ed_get_packet __P((struct ed_softc *, char *, /* u_short */ int, int));
-static void ed_rint __P((struct ed_softc *));
-static void ed_xmit __P((struct ed_softc *));
-static char * ed_ring_copy __P((struct ed_softc *, char *, char *,
+static void ed_rint __P((struct ed_softc *));
+static void ed_xmit __P((struct ed_softc *));
+static char * ed_ring_copy __P((struct ed_softc *, char *, char *,
/* u_short */ int));
static void ed_hpp_set_physical_link __P((struct ed_softc *));
-static void ed_hpp_readmem __P((struct ed_softc *, int, unsigned char *,
+static void ed_hpp_readmem __P((struct ed_softc *, int, unsigned char *,
/* u_short */ int));
static u_short ed_hpp_write_mbufs __P((struct ed_softc *, struct mbuf *,
int));
-static void ed_pio_readmem __P((struct ed_softc *, int, unsigned char *,
+static void ed_pio_readmem __P((struct ed_softc *, int, unsigned char *,
/* u_short */ int));
-static void ed_pio_writemem __P((struct ed_softc *, char *,
+static void ed_pio_writemem __P((struct ed_softc *, char *,
/* u_short */ int, /* u_short */ int));
static u_short ed_pio_write_mbufs __P((struct ed_softc *, struct mbuf *,
int));
void edintr_sc __P((struct ed_softc *));
-static void ed_setrcr(struct ed_softc *);
+static void ed_setrcr __P((struct ed_softc *));
-static u_long ds_crc(u_char *ep);
+static u_long ds_crc __P((u_char *ep));
#if (NCARD > 0) || (NPNP > 0)
#include <sys/kernel.h>
@@ -210,9 +210,9 @@ static u_long ds_crc(u_char *ep);
/*
* PC-Card (PCMCIA) specific code.
*/
-static int edinit(struct pccard_devinfo *); /* init device */
-static void edunload(struct pccard_devinfo *); /* Disable driver */
-static int card_intr(struct pccard_devinfo *); /* Interrupt handler */
+static int edinit __P((struct pccard_devinfo *));
+static void edunload __P((struct pccard_devinfo *));
+static int card_intr __P((struct pccard_devinfo *));
static struct pccard_device ed_info = {
"ed",
diff --git a/sys/i386/isa/if_fe.c b/sys/i386/isa/if_fe.c
index 0ce73b7..462d1a5 100644
--- a/sys/i386/isa/if_fe.c
+++ b/sys/i386/isa/if_fe.c
@@ -21,7 +21,7 @@
*/
/*
- * $Id: if_fe.c,v 1.37 1998/01/08 23:40:53 eivind Exp $
+ * $Id: if_fe.c,v 1.38 1998/02/27 05:38:31 msmith Exp $
*
* Device driver for Fujitsu MB86960A/MB86965A based Ethernet cards.
* To be used with FreeBSD 2.x
@@ -326,9 +326,9 @@ outblk ( struct fe_softc * sc, int offs, u_char const * mem, int len )
/*
* PC-Card (PCMCIA) specific code.
*/
-static int feinit(struct pccard_devinfo *); /* init device */
-static void feunload(struct pccard_devinfo *); /* Disable driver */
-static int fe_card_intr(struct pccard_devinfo *); /* Interrupt handler */
+static int feinit (struct pccard_devinfo *);
+static void feunload (struct pccard_devinfo *);
+static int fe_card_intr (struct pccard_devinfo *);
static struct pccard_device fe_info = {
"fe",
diff --git a/sys/i386/isa/sio.c b/sys/i386/isa/sio.c
index b5aad90..9ac8889 100644
--- a/sys/i386/isa/sio.c
+++ b/sys/i386/isa/sio.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
- * $Id: sio.c,v 1.197 1998/02/14 16:17:17 nate Exp $
+ * $Id: sio.c,v 1.198 1998/02/27 05:38:32 msmith Exp $
*/
#include "opt_comconsole.h"
@@ -481,9 +481,9 @@ SYSCTL_PROC(_machdep, OID_AUTO, conspeed, CTLTYPE_INT | CTLFLAG_RW,
/*
* PC-Card (PCMCIA) specific code.
*/
-static int sioinit(struct pccard_devinfo *); /* init device */
-static void siounload(struct pccard_devinfo *); /* Disable driver */
-static int card_intr(struct pccard_devinfo *); /* Interrupt handler */
+static int sioinit __P((struct pccard_devinfo *));
+static void siounload __P((struct pccard_devinfo *));
+static int card_intr __P((struct pccard_devinfo *));
static struct pccard_device sio_info = {
driver_name,
diff --git a/sys/isa/sio.c b/sys/isa/sio.c
index b5aad90..9ac8889 100644
--- a/sys/isa/sio.c
+++ b/sys/isa/sio.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
- * $Id: sio.c,v 1.197 1998/02/14 16:17:17 nate Exp $
+ * $Id: sio.c,v 1.198 1998/02/27 05:38:32 msmith Exp $
*/
#include "opt_comconsole.h"
@@ -481,9 +481,9 @@ SYSCTL_PROC(_machdep, OID_AUTO, conspeed, CTLTYPE_INT | CTLFLAG_RW,
/*
* PC-Card (PCMCIA) specific code.
*/
-static int sioinit(struct pccard_devinfo *); /* init device */
-static void siounload(struct pccard_devinfo *); /* Disable driver */
-static int card_intr(struct pccard_devinfo *); /* Interrupt handler */
+static int sioinit __P((struct pccard_devinfo *));
+static void siounload __P((struct pccard_devinfo *));
+static int card_intr __P((struct pccard_devinfo *));
static struct pccard_device sio_info = {
driver_name,
OpenPOWER on IntegriCloud