diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 2002-06-30 19:37:00 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 2002-06-30 19:37:00 +0000 |
commit | 999fd0f265ad6eb0a8789cf9ff67bebc5435d857 (patch) | |
tree | 097209f44bf9a17703cf29453a663460278dcd7a /sys/dev/ic/smc93cx6var.h | |
parent | 3670ebc14455f9052d3cfed74daa62a18c7c01b2 (diff) |
Add write function to seeprom.
Diffstat (limited to 'sys/dev/ic/smc93cx6var.h')
-rw-r--r-- | sys/dev/ic/smc93cx6var.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/smc93cx6var.h b/sys/dev/ic/smc93cx6var.h index 267c31d7189..fc397b865e6 100644 --- a/sys/dev/ic/smc93cx6var.h +++ b/sys/dev/ic/smc93cx6var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smc93cx6var.h,v 1.11 2002/06/28 01:27:59 millert Exp $ */ +/* $OpenBSD: smc93cx6var.h,v 1.12 2002/06/30 19:36:59 smurph 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 @@ -96,6 +96,8 @@ do { \ 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); #endif /* _KERNEL */ |