diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-05-28 04:19:54 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-05-28 04:19:54 +0000 |
commit | 2a98051bbfed88ae0fee77862ed31af2c01683bd (patch) | |
tree | 6d6cec7ef23f372c11031712ead3c1edae9d14fb /sys/dev/pci/fmsvar.h | |
parent | 938bcf4e70ceb3ddfd9bfdfb2a52bf6326763b8f (diff) |
fix the fms attachment printfs and move out the radio parts to the fmsradio.c; from jumbo@ and some fixes from mickey@
Diffstat (limited to 'sys/dev/pci/fmsvar.h')
-rw-r--r-- | sys/dev/pci/fmsvar.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/pci/fmsvar.h b/sys/dev/pci/fmsvar.h index 5bdd53c0eeb..aacfb2b2985 100644 --- a/sys/dev/pci/fmsvar.h +++ b/sys/dev/pci/fmsvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: fmsvar.h,v 1.3 2002/05/06 16:37:43 mickey Exp $ */ +/* $OpenBSD: fmsvar.h,v 1.4 2002/05/28 04:19:53 mickey Exp $ */ /* $NetBSD: fmsvar.h,v 1.1 1999/11/01 21:54:12 augustss Exp $ */ /*- @@ -56,13 +56,11 @@ struct fms_softc { bus_space_handle_t sc_mpu_ioh; struct device * sc_mpu_dev; + void *radio; + struct ac97_codec_if *codec_if; struct ac97_host_if host_if; -#if NRADIO > 0 - struct fmsradio_if radio; -#endif - struct fms_dma *sc_dmas; void (*sc_pintr)(void *); @@ -80,4 +78,6 @@ struct fms_softc { u_int16_t sc_rec_reg; }; +int fmsradio_attach(struct fms_softc *); + #endif |