Deleted Added
full compact
driver.c (125195) driver.c (132199)
1/*
2 * Copyright (c) 2000 Cameron Grant <cg@freebsd.org>
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, WHETHERIN 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 THEPOSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*
2 * Copyright (c) 2000 Cameron Grant <cg@freebsd.org>
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, WHETHERIN 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 THEPOSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/dev/sound/driver.c 125195 2004-01-29 14:11:03Z mr $
26 * $FreeBSD: head/sys/dev/sound/driver.c 132199 2004-07-15 08:26:07Z phk $
27 */
28
29#include <dev/sound/pcm/sound.h>
30
31static int
32snd_modevent(module_t mod, int type, void *data)
33{
34
35 switch (type) {
36 case MOD_LOAD:
37 break;
38 case MOD_UNLOAD:
39 break;
40 default:
27 */
28
29#include <dev/sound/pcm/sound.h>
30
31static int
32snd_modevent(module_t mod, int type, void *data)
33{
34
35 switch (type) {
36 case MOD_LOAD:
37 break;
38 case MOD_UNLOAD:
39 break;
40 default:
41 return (EOPNOTSUPP);
41 break;
42 }
43 return 0;
44}
45
46static moduledata_t snd_mod = {
47 "snd_driver",
48 snd_modevent,

--- 32 unchanged lines hidden ---
42 break;
43 }
44 return 0;
45}
46
47static moduledata_t snd_mod = {
48 "snd_driver",
49 snd_modevent,

--- 32 unchanged lines hidden ---