.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * ALSA driver for the Aureal Vortex family of soundprocessors. |
---|
3 | 4 | * Author: Manuel Jander (mjander@embedded.cl) |
---|
.. | .. |
---|
141 | 142 | { |
---|
142 | 143 | vortex_t *chip; |
---|
143 | 144 | int err; |
---|
144 | | - static struct snd_device_ops ops = { |
---|
| 145 | + static const struct snd_device_ops ops = { |
---|
145 | 146 | .dev_free = snd_vortex_dev_free, |
---|
146 | 147 | }; |
---|
147 | 148 | |
---|
.. | .. |
---|
201 | 202 | goto irq_out; |
---|
202 | 203 | } |
---|
203 | 204 | chip->irq = pci->irq; |
---|
| 205 | + card->sync_irq = chip->irq; |
---|
204 | 206 | |
---|
205 | 207 | pci_set_master(pci); |
---|
206 | 208 | // End of PCI setup. |
---|