From c4b578129621eec8e9bb7febfc0b0cca24912805 Mon Sep 17 00:00:00 2001 From: "Justin T. Gibbs" Date: Sat, 18 Mar 2000 22:15:00 +0000 Subject: [PATCH] KNR -> ANSI function definition in two places. This matches the rest of the code in this driver. --- sys/dev/aic7xxx/ahc_pci.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/sys/dev/aic7xxx/ahc_pci.c b/sys/dev/aic7xxx/ahc_pci.c index b40455b2fb18..67bb43ab916f 100644 --- a/sys/dev/aic7xxx/ahc_pci.c +++ b/sys/dev/aic7xxx/ahc_pci.c @@ -1526,17 +1526,14 @@ acquire_seeprom(struct ahc_softc *ahc, struct seeprom_descriptor *sd) } static void -release_seeprom(sd) - struct seeprom_descriptor *sd; +release_seeprom(struct seeprom_descriptor *sd) { /* Release access to the memory port and the serial EEPROM. */ SEEPROM_OUTB(sd, 0); } static void -write_brdctl(ahc, value) - struct ahc_softc *ahc; - u_int8_t value; +write_brdctl(struct ahc_softc *ahc, u_int8_t value) { u_int8_t brdctl;