diff options
| author | Sofian Brabez <sbz@FreeBSD.org> | 2013-01-30 18:01:20 +0000 |
|---|---|---|
| committer | Sofian Brabez <sbz@FreeBSD.org> | 2013-01-30 18:01:20 +0000 |
| commit | 61bfd867626dad25026bafcbc5fbc595d9e85417 (patch) | |
| tree | b90283573540537e551848558d0045460649c4e6 /sys/dev/sound | |
| parent | 8caedc2a57834d003127e32c17bc149271d856c2 (diff) | |
Notes
Diffstat (limited to 'sys/dev/sound')
| -rw-r--r-- | sys/dev/sound/pci/emu10kx-midi.c | 2 | ||||
| -rw-r--r-- | sys/dev/sound/pci/emu10kx-pcm.c | 3 | ||||
| -rw-r--r-- | sys/dev/sound/pci/emu10kx.c | 2 | ||||
| -rw-r--r-- | sys/dev/sound/sbus/cs4231.c | 6 | ||||
| -rw-r--r-- | sys/dev/sound/usb/uaudio_pcm.c | 2 |
5 files changed, 9 insertions, 6 deletions
diff --git a/sys/dev/sound/pci/emu10kx-midi.c b/sys/dev/sound/pci/emu10kx-midi.c index c85800ebf624..0d5fa305cba2 100644 --- a/sys/dev/sound/pci/emu10kx-midi.c +++ b/sys/dev/sound/pci/emu10kx-midi.c @@ -239,7 +239,7 @@ static device_method_t emu_midi_methods[] = { DEVMETHOD(device_attach, emu_midi_attach), DEVMETHOD(device_detach, emu_midi_detach), - {0, 0}, + DEVMETHOD_END }; static driver_t emu_midi_driver = { diff --git a/sys/dev/sound/pci/emu10kx-pcm.c b/sys/dev/sound/pci/emu10kx-pcm.c index ab20dc6366b9..406a85ff77cc 100644 --- a/sys/dev/sound/pci/emu10kx-pcm.c +++ b/sys/dev/sound/pci/emu10kx-pcm.c @@ -1520,7 +1520,8 @@ static device_method_t emu_pcm_methods[] = { DEVMETHOD(device_probe, emu_pcm_probe), DEVMETHOD(device_attach, emu_pcm_attach), DEVMETHOD(device_detach, emu_pcm_detach), - {0, 0} + + DEVMETHOD_END }; static driver_t emu_pcm_driver = { diff --git a/sys/dev/sound/pci/emu10kx.c b/sys/dev/sound/pci/emu10kx.c index 5f217c1afcdb..35a49571aeaf 100644 --- a/sys/dev/sound/pci/emu10kx.c +++ b/sys/dev/sound/pci/emu10kx.c @@ -3529,7 +3529,7 @@ static device_method_t emu_methods[] = { DEVMETHOD(bus_read_ivar, emu_read_ivar), DEVMETHOD(bus_write_ivar, emu_write_ivar), - {0, 0} + DEVMETHOD_END }; diff --git a/sys/dev/sound/sbus/cs4231.c b/sys/dev/sound/sbus/cs4231.c index e643a4e053e7..83f70f3a4813 100644 --- a/sys/dev/sound/sbus/cs4231.c +++ b/sys/dev/sound/sbus/cs4231.c @@ -231,7 +231,8 @@ static device_method_t cs4231_sbus_methods[] = { DEVMETHOD(device_detach, cs4231_bus_detach), DEVMETHOD(device_suspend, cs4231_bus_suspend), DEVMETHOD(device_resume, cs4231_bus_resume), - {0, 0} + + DEVMETHOD_END }; static driver_t cs4231_sbus_driver = { @@ -249,7 +250,8 @@ static device_method_t cs4231_ebus_methods[] = { DEVMETHOD(device_detach, cs4231_bus_detach), DEVMETHOD(device_suspend, cs4231_bus_suspend), DEVMETHOD(device_resume, cs4231_bus_resume), - {0, 0} + + DEVMETHOD_END }; static driver_t cs4231_ebus_driver = { diff --git a/sys/dev/sound/usb/uaudio_pcm.c b/sys/dev/sound/usb/uaudio_pcm.c index b57d0fbf9b40..bd00a014f537 100644 --- a/sys/dev/sound/usb/uaudio_pcm.c +++ b/sys/dev/sound/usb/uaudio_pcm.c @@ -227,7 +227,7 @@ static device_method_t ua_pcm_methods[] = { DEVMETHOD(device_attach, ua_attach), DEVMETHOD(device_detach, ua_detach), - {0, 0} + DEVMETHOD_END }; static driver_t ua_pcm_driver = { |
