ca0106.h (75bf465f0bc33e9b776a46d6a1b9b990f5fb7c37) ca0106.h (dc6ffaf82899d459cc486dff88e57133e03d9e28)
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * Copyright (c) 2004 James Courtier-Dutton <James@superbug.demon.co.uk>
4 * Driver CA0106 chips. e.g. Sound Blaster Audigy LS and Live 24bit
5 * Version: 0.0.22
6 *
7 * FEATURES currently supported:
8 * See ca0106_main.c for features.

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

658 u16 spi_dac; /* spi_dac = 0 -> no spi interface for DACs
659 spi_dac = 0x<front><rear><center-lfe><side>
660 -> specifies DAC id for each channel pair. */
661};
662
663// definition of the chip-specific record
664struct snd_ca0106 {
665 struct snd_card *card;
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * Copyright (c) 2004 James Courtier-Dutton <James@superbug.demon.co.uk>
4 * Driver CA0106 chips. e.g. Sound Blaster Audigy LS and Live 24bit
5 * Version: 0.0.22
6 *
7 * FEATURES currently supported:
8 * See ca0106_main.c for features.

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

658 u16 spi_dac; /* spi_dac = 0 -> no spi interface for DACs
659 spi_dac = 0x<front><rear><center-lfe><side>
660 -> specifies DAC id for each channel pair. */
661};
662
663// definition of the chip-specific record
664struct snd_ca0106 {
665 struct snd_card *card;
666 struct snd_ca0106_details *details;
666 const struct snd_ca0106_details *details;
667 struct pci_dev *pci;
668
669 unsigned long port;
670 struct resource *res_port;
671 int irq;
672
673 unsigned int serial; /* serial number */
674 unsigned short model; /* subsystem id */

--- 53 unchanged lines hidden ---
667 struct pci_dev *pci;
668
669 unsigned long port;
670 struct resource *res_port;
671 int irq;
672
673 unsigned int serial; /* serial number */
674 unsigned short model; /* subsystem id */

--- 53 unchanged lines hidden ---