Deleted Added
full compact
chip.h (53553) chip.h (55320)
1/*-
2 * Copyright (c) 1999 Seigo Tanimura
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 1999 Seigo Tanimura
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/dev/sound/chip.h 53553 1999-11-22 06:07:49Z tanimura $
26 * $FreeBSD: head/sys/dev/sound/chip.h 55320 2000-01-03 02:51:16Z tanimura $
27 */
28
29/*
30 * These are the function codes assigned to the children of
31 * sound cards.
32 */
33enum {
34 SCF_PCM,
35 SCF_MIDI,
36 SCF_SYNTH,
37};
38
39/*
40 * This is the device information struct, used by
27 */
28
29/*
30 * These are the function codes assigned to the children of
31 * sound cards.
32 */
33enum {
34 SCF_PCM,
35 SCF_MIDI,
36 SCF_SYNTH,
37};
38
39/*
40 * This is the device information struct, used by
41 * sndcard device to pass the device function code
42 * to the driver.
41 * a bridge device to pass the device function code
42 * to the children.
43 */
44struct sndcard_func {
43 */
44struct sndcard_func {
45 int func;
45 int func; /* The function code. */
46 void *varinfo; /* Bridge-specific information. */
46};
47};