diff options
author | peter <peter@FreeBSD.org> | 1998-10-31 14:23:09 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-10-31 14:23:09 +0000 |
commit | a86ed6c36db541fcff38cf85cb177d11e434e11f (patch) | |
tree | 355eacefa08e461c97af9a628135c32ab282f84e /sys/dev/pcf | |
parent | ca67637f92b5c4417d2dc83c651c95cde7eb8f81 (diff) | |
download | FreeBSD-src-a86ed6c36db541fcff38cf85cb177d11e434e11f.zip FreeBSD-src-a86ed6c36db541fcff38cf85cb177d11e434e11f.tar.gz |
Fixup prototypes so that this beastie compiles.
Diffstat (limited to 'sys/dev/pcf')
-rw-r--r-- | sys/dev/pcf/pcf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pcf/pcf.c b/sys/dev/pcf/pcf.c index 771dd30..0d08b3c 100644 --- a/sys/dev/pcf/pcf.c +++ b/sys/dev/pcf/pcf.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: pcf.c,v 1.2 1998/10/22 05:58:40 bde Exp $ + * $Id: pcf.c,v 1.3 1998/10/31 11:37:09 nsouch Exp $ * */ #include <sys/param.h> @@ -108,10 +108,10 @@ static void pcf_print_child(device_t, device_t); static int pcf_repeated_start(device_t, u_char, int); static int pcf_start(device_t, u_char, int); static int pcf_stop(device_t); -static int pcf_write(device_t, char *, int, int *); -static int pcf_read(device_t, char *, int, int *); +static int pcf_write(device_t, char *, int, int *, int); +static int pcf_read(device_t, char *, int, int *, int, int); static ointhand2_t pcfintr; -static int pcf_rst_card(device_t, u_char); +static int pcf_rst_card(device_t, u_char, u_char, u_char *); static device_method_t pcf_methods[] = { /* device interface */ |