diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2004-10-17 08:58:57 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2004-10-17 08:58:57 +0000 |
commit | af2eaac9c4313fe0f6456ecfeabcef2a8d9f4284 (patch) | |
tree | dcadb996e7e2f59cf71abb69673a15b9f7017855 /sys/dev/ic/wdcvar.h | |
parent | c0c1c56c0c8fdf1265a6d403e8a1fa041252df28 (diff) |
Move declaration of default _vtbl members (wdc_default_*) to
wdcvar.h.
Diffstat (limited to 'sys/dev/ic/wdcvar.h')
-rw-r--r-- | sys/dev/ic/wdcvar.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/sys/dev/ic/wdcvar.h b/sys/dev/ic/wdcvar.h index 104b7d56cff..4af1b1d0ecc 100644 --- a/sys/dev/ic/wdcvar.h +++ b/sys/dev/ic/wdcvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wdcvar.h,v 1.35 2004/10/17 08:42:41 grange Exp $ */ +/* $OpenBSD: wdcvar.h,v 1.36 2004/10/17 08:58:56 grange Exp $ */ /* $NetBSD: wdcvar.h,v 1.17 1999/04/11 20:50:29 bouyer Exp $ */ /*- @@ -309,4 +309,17 @@ void wdc_print_current_modes(struct channel_softc *); int wdc_ioctl(struct ata_drive_datas *, u_long, caddr_t, int, struct proc *); +u_int8_t wdc_default_read_reg(struct channel_softc *, + enum wdc_regs); +void wdc_default_write_reg(struct channel_softc *, + enum wdc_regs, u_int8_t); +void wdc_default_read_raw_multi_2(struct channel_softc *, + void *, unsigned int); +void wdc_default_write_raw_multi_2(struct channel_softc *, + void *, unsigned int); +void wdc_default_read_raw_multi_4(struct channel_softc *, + void *, unsigned int); +void wdc_default_write_raw_multi_4(struct channel_softc *, + void *, unsigned int); + #endif /* !_DEV_IC_WDCVAR_H_ */ |