1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Fix style bugs introduced in the de__Pification of this code.

Style bug generically noted by: bde
This commit is contained in:
Warner Losh 2005-02-08 05:41:54 +00:00
parent 8a87dc6fd9
commit 442b6e9e8c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=141493

View File

@ -190,32 +190,30 @@ struct ed_softc {
rman_get_bushandle((sc)->port_res), \
(sc)->asic_offset + (port), (uint32_t *)(addr), (count))
void ed_release_resources (device_t);
int ed_alloc_port (device_t, int, int);
int ed_alloc_memory (device_t, int, int);
int ed_alloc_irq (device_t, int, int);
void ed_release_resources(device_t);
int ed_alloc_port(device_t, int, int);
int ed_alloc_memory(device_t, int, int);
int ed_alloc_irq(device_t, int, int);
int ed_probe_generic8390 (struct ed_softc *);
int ed_probe_WD80x3 (device_t, int, int);
int ed_probe_WD80x3_generic (device_t, int, unsigned short *[]);
int ed_probe_3Com (device_t, int, int);
int ed_probe_SIC (device_t, int, int);
int ed_probe_Novell (device_t, int, int);
int ed_probe_Novell_generic (device_t, int);
int ed_probe_HP_pclanp (device_t, int, int);
int ed_probe_generic8390(struct ed_softc *);
int ed_probe_WD80x3(device_t, int, int);
int ed_probe_WD80x3_generic(device_t, int, unsigned short *[]);
int ed_probe_3Com(device_t, int, int);
int ed_probe_SIC(device_t, int, int);
int ed_probe_Novell(device_t, int, int);
int ed_probe_Novell_generic(device_t, int);
int ed_probe_HP_pclanp(device_t, int, int);
int ed_attach (device_t);
void ed_stop (struct ed_softc *);
void ed_pio_readmem (struct ed_softc *, long, unsigned char *,
unsigned short);
void ed_pio_writemem (struct ed_softc *, char *,
unsigned short, unsigned short);
int ed_attach(device_t);
void ed_stop(struct ed_softc *);
void ed_pio_readmem(struct ed_softc *, long, unsigned char *, unsigned short);
void ed_pio_writemem(struct ed_softc *, char *, unsigned short, unsigned short);
#ifndef ED_NO_MIIBUS
int ed_miibus_readreg (device_t, int, int);
void ed_miibus_writereg (device_t, int, int, int);
int ed_ifmedia_upd (struct ifnet *);
void ed_ifmedia_sts (struct ifnet *, struct ifmediareq *);
void ed_child_detached (device_t, device_t);
int ed_miibus_readreg(device_t, int, int);
void ed_miibus_writereg(device_t, int, int, int);
int ed_ifmedia_upd(struct ifnet *);
void ed_ifmedia_sts(struct ifnet *, struct ifmediareq *);
void ed_child_detached(device_t, device_t);
#endif
driver_intr_t edintr;