diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2003-08-08 21:34:40 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2003-08-08 21:34:40 +0000 |
commit | 1f0d2f4fea42e3c02c1e4387694da2f4e015dccb (patch) | |
tree | a95abfa536dc0162cb590b90077ca622c4c82226 /sys/dev/ic/smc93cx6var.h | |
parent | 72b635d79a8c0db07f9526a0761942a98e9b0974 (diff) |
remove unused code and a some cleanup; deraadt@ and krw@ ok.
Diffstat (limited to 'sys/dev/ic/smc93cx6var.h')
-rw-r--r-- | sys/dev/ic/smc93cx6var.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/dev/ic/smc93cx6var.h b/sys/dev/ic/smc93cx6var.h index fc397b865e6..b03984b65fd 100644 --- a/sys/dev/ic/smc93cx6var.h +++ b/sys/dev/ic/smc93cx6var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smc93cx6var.h,v 1.12 2002/06/30 19:36:59 smurph Exp $ */ +/* $OpenBSD: smc93cx6var.h,v 1.13 2003/08/08 21:34:39 fgsch Exp $ */ /* $FreeBSD: sys/dev/aic7xxx/93cx6.h,v 1.3 1999/12/29 04:35:33 peter Exp $ */ /* * Interface to the 93C46 serial EEPROM that is used to store BIOS @@ -94,11 +94,9 @@ do { \ #define SEEPROM_DATA_INB(sd) \ ahc_inb(sd->sd_ahc, sd->sd_dataout_offset) -int read_seeprom(struct seeprom_descriptor *sd, u_int16_t *buf, - bus_size_t start_addr, bus_size_t count); -int write_seeprom(struct seeprom_descriptor *sd, u_int16_t *buf, - bus_size_t start_addr, bus_size_t count); -int verify_cksum(struct seeprom_config *sc); +int read_seeprom(struct seeprom_descriptor *, u_int16_t *, + bus_size_t, bus_size_t); +int verify_cksum(struct seeprom_config *); #endif /* _KERNEL */ #endif /* SMC93CX6VAR_H_ */ |