diff options
author | Eric Jackson <ericj@cvs.openbsd.org> | 2002-01-20 19:56:54 +0000 |
---|---|---|
committer | Eric Jackson <ericj@cvs.openbsd.org> | 2002-01-20 19:56:54 +0000 |
commit | 10c920d080603ff3b6719285c3e7bd54ff32efd2 (patch) | |
tree | 252fa907f4d5c57349ee74c90f62b297da4fe787 /sys/dev/pci/fms.c | |
parent | 14675026c36c5e4af0a6ad26a161393ec808185a (diff) |
make all audio drivers use the new allocm and round_buffersize decl's.
will ease porting, and generally cleans up a bit
Diffstat (limited to 'sys/dev/pci/fms.c')
-rw-r--r-- | sys/dev/pci/fms.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/dev/pci/fms.c b/sys/dev/pci/fms.c index 1cfd40d79b9..82852cc41bf 100644 --- a/sys/dev/pci/fms.c +++ b/sys/dev/pci/fms.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fms.c,v 1.5 2001/10/31 11:00:24 art Exp $ */ +/* $OpenBSD: fms.c,v 1.6 2002/01/20 19:56:53 ericj Exp $ */ /* $NetBSD: fms.c,v 1.5.4.1 2000/06/30 16:27:50 simonb Exp $ */ /*- @@ -137,15 +137,13 @@ struct audio_hw_if fms_hw_if = { fms_set_port, fms_get_port, fms_query_devinfo, - NULL, + fms_malloc, fms_free, - NULL, + fms_round_buffersize, fms_mappage, fms_get_props, fms_trigger_output, - fms_trigger_input, - fms_malloc, - fms_round_buffersize, + fms_trigger_input }; int fms_attach_codec __P((void *, struct ac97_codec_if *)); |