Προς το περιεχόμενο

make + make install - κατι συγκεκριμενο


freskas

Προτεινόμενες αναρτήσεις

Μπορω να κανω make και make install κατι συγκεκριμενο?

Δλδ:

Κατεβασα το πακετο alsa-driver-1.0.16.tar.bz2

Αλλαξα μια τιμη στο bt87x.c για να υποστηριζει μεγαλυτερους ρυθμους δειγματοληψιας.

Και θελω να το κανω (με καποιο διακοπτη) make και make-install μονο αυτο (για να μην χαλασει η υπαρχουσα εγκατασταση παραμονο να αλλαξει το snd-bt87x.ko)

 

Μεχρι στιγμης καταφερα να κανω make -i γιατι πετουσε errors σε μερικα modules (αλλος ενας λογος να μην κανω make install ολο το πακετο) και πηρα σαν αποτελεσμα το snd-bt87x.o

Απ' οτι διαβασα ομως δεν γινετε να το μετατρεψεις σε .ko ετσι απλα με καποια εντολη, γι' αυτο θελω να κανω πχ: make install snd-bt878.o και να μετατραπει σε .ko με το install.

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

αλλαξες το bitrate απο τον κώδικα?

Αυτό δεν πρόκειται να σου δουλέψει βασικα...

Η εντολή make καλεί το makefile οπου απο εκεί γίνεται compile η εφαρμογή.

Με την εντολή make install απλά κάνεισ εγκατάσταση στα directories του συστήματό σου τη συγκεκριμένη εφαρμογή.

Οπότε οτιδήποτε αλλάζεισ στον κώδικα, απλά με τη make κανεισ compile και με τη make install εγκατάσταση...Για να σου πετάει ερορ πάντως δε νομίζω να σου δουλέψει(σωστα)...

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Γιατι το λες αυτο, o Domenech το καταφερε αυτο.

Errors πεταει σε αλλα modules οχι στο snd-bt878.o που θελω εγω αυτο το κανει compile κανονικα.

Απλα δεν θελω να κανω κανονικο make install για να μη μου γα**θει το συστημα και θελω να το μετατρεψω σε .ko .

Εστω και με ποια εντολη gcc κανουμε compile modules θα 'φτανε.

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Για να γίνει .ko (kernel object) θα πρέπει να έχει και τον αντίστοιχο κώδικα μέσα κάτι που δεν ξέρω αν ισχυεί. Αν είναι γραμμένο όμως για ko, τότε τρέξε με το χέρι το gcc -o snd-bt87x.ko <source file>, βρές ποιά paths θέλει για headers και για άλλες βιβλιοθήκες και δώστα με -L και -l αντίστοιχα. Μετά, κάνε insmod το module για να δείς αν παίζει.

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Ο κωδικας ειναι ο εξης:

>
/*
* bt87x.c - Brooktree Bt878/Bt879 driver for ALSA
*
* Copyright (c) Clemens Ladisch <[email protected]>
*
* based on btaudio.c by Gerd Knorr <[email protected]>
*
*
*  This driver is free software; you can redistribute it and/or modify
*  it under the terms of the GNU General Public License as published by
*  the Free Software Foundation; either version 2 of the License, or
*  (at your option) any later version.
*
*  This driver is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*  GNU General Public License for more details.
*
*  You should have received a copy of the GNU General Public License
*  along with this program; if not, write to the Free Software
*  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
*/

#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/slab.h>
#include <linux/moduleparam.h>
#include <linux/bitops.h>
#include <asm/io.h>
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/control.h>
#include <sound/initval.h>

MODULE_AUTHOR("Clemens Ladisch <[email protected]>");
MODULE_DESCRIPTION("Brooktree Bt87x audio driver");
MODULE_LICENSE("GPL");
MODULE_SUPPORTED_DEVICE("{{Brooktree,Bt878},"
	"{Brooktree,Bt879}}");

static int index[sNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = -2}; /* Exclude the first card */
static char *id[sNDRV_CARDS] = SNDRV_DEFAULT_STR;	/* ID for this card */
static int enable[sNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;	/* Enable this card */
static int digital_rate[sNDRV_CARDS];	/* digital input rate */
static int load_all;	/* allow to load the non-whitelisted cards */

module_param_array(index, int, NULL, 0444);
MODULE_PARM_DESC(index, "Index value for Bt87x soundcard");
module_param_array(id, charp, NULL, 0444);
MODULE_PARM_DESC(id, "ID string for Bt87x soundcard");
module_param_array(enable, bool, NULL, 0444);
MODULE_PARM_DESC(enable, "Enable Bt87x soundcard");
module_param_array(digital_rate, int, NULL, 0444);
MODULE_PARM_DESC(digital_rate, "Digital input rate for Bt87x soundcard");
module_param(load_all, bool, 0444);
MODULE_PARM_DESC(load_all, "Allow to load the non-whitelisted cards");


/* register offsets */
#define REG_INT_STAT		0x100	/* interrupt status */
#define REG_INT_MASK		0x104	/* interrupt mask */
#define REG_GPIO_DMA_CTL	0x10c	/* audio control */
#define REG_PACKET_LEN		0x110	/* audio packet lengths */
#define REG_RISC_STRT_ADD	0x114	/* RISC program start address */
#define REG_RISC_COUNT		0x120	/* RISC program counter */

/* interrupt bits */
#define INT_OFLOW	(1 <<  3)	/* audio A/D overflow */
#define INT_RISCI	(1 << 11)	/* RISC instruction IRQ bit set */
#define INT_FBUS	(1 << 12)	/* FIFO overrun due to bus access latency */
#define INT_FTRGT	(1 << 13)	/* FIFO overrun due to target latency */
#define INT_FDSR	(1 << 14)	/* FIFO data stream resynchronization */
#define INT_PPERR	(1 << 15)	/* PCI parity error */
#define INT_RIPERR	(1 << 16)	/* RISC instruction parity error */
#define INT_PABORT	(1 << 17)	/* PCI master or target abort */
#define INT_OCERR	(1 << 18)	/* invalid opcode */
#define INT_SCERR	(1 << 19)	/* sync counter overflow */
#define INT_RISC_EN	(1 << 27)	/* DMA controller running */
#define INT_RISCS_SHIFT	      28	/* RISC status bits */

/* audio control bits */
#define CTL_FIFO_ENABLE		(1 <<  0)	/* enable audio data FIFO */
#define CTL_RISC_ENABLE		(1 <<  1)	/* enable audio DMA controller */
#define CTL_PKTP_4		(0 <<  2)	/* packet mode FIFO trigger point - 4 DWORDs */
#define CTL_PKTP_8		(1 <<  2)	/* 8 DWORDs */
#define CTL_PKTP_16		(2 <<  2)	/* 16 DWORDs */
#define CTL_ACAP_EN		(1 <<  4)	/* enable audio capture */
#define CTL_DA_APP		(1 <<  5)	/* GPIO input */
#define CTL_DA_IOM_AFE		(0 <<  6)	/* audio A/D input */
#define CTL_DA_IOM_DA		(1 <<  6)	/* digital audio input */
#define CTL_DA_SDR_SHIFT	       8	/* DDF first stage decimation rate */
#define CTL_DA_SDR_MASK		(0xf<< 8)
#define CTL_DA_LMT		(1 << 12)	/* limit audio data values */
#define CTL_DA_ES2		(1 << 13)	/* enable DDF stage 2 */
#define CTL_DA_SBR		(1 << 14)	/* samples rounded to 8 bits */
#define CTL_DA_DPM		(1 << 15)	/* data packet mode */
#define CTL_DA_LRD_SHIFT	      16	/* ALRCK delay */
#define CTL_DA_MLB		(1 << 21)	/* MSB/LSB format */
#define CTL_DA_LRI		(1 << 22)	/* left/right indication */
#define CTL_DA_SCE		(1 << 23)	/* sample clock edge */
#define CTL_A_SEL_STV		(0 << 24)	/* TV tuner audio input */
#define CTL_A_SEL_SFM		(1 << 24)	/* FM audio input */
#define CTL_A_SEL_SML		(2 << 24)	/* mic/line audio input */
#define CTL_A_SEL_SMXC		(3 << 24)	/* MUX bypass */
#define CTL_A_SEL_SHIFT		      24
#define CTL_A_SEL_MASK		(3 << 24)
#define CTL_A_PWRDN		(1 << 26)	/* analog audio power-down */
#define CTL_A_G2X		(1 << 27)	/* audio gain boost */
#define CTL_A_GAIN_SHIFT	      28	/* audio input gain */
#define CTL_A_GAIN_MASK		(0xf<<28)

/* RISC instruction opcodes */
#define RISC_WRITE	(0x1 << 28)	/* write FIFO data to memory at address */
#define RISC_WRITEC	(0x5 << 28)	/* write FIFO data to memory at current address */
#define RISC_SKIP	(0x2 << 28)	/* skip FIFO data */
#define RISC_JUMP	(0x7 << 28)	/* jump to address */
#define RISC_SYNC	(0x8 << 28)	/* synchronize with FIFO */

/* RISC instruction bits */
#define RISC_BYTES_ENABLE	(0xf << 12)	/* byte enable bits */
#define RISC_RESYNC		(  1 << 15)	/* disable FDSR errors */
#define RISC_SET_STATUS_SHIFT	        16	/* set status bits */
#define RISC_RESET_STATUS_SHIFT	        20	/* clear status bits */
#define RISC_IRQ		(  1 << 24)	/* interrupt */
#define RISC_EOL		(  1 << 26)	/* end of line */
#define RISC_SOL		(  1 << 27)	/* start of line */

/* SYNC status bits values */
#define RISC_SYNC_FM1	0x6
#define RISC_SYNC_VRO	0xc

#define ANALOG_CLOCK 1792000
#ifdef CONFIG_SND_BT87X_OVERCLOCK
#define CLOCK_DIV_MIN 1
#else
#define CLOCK_DIV_MIN 4
#endif
#define CLOCK_DIV_MAX 15

#define ERROR_INTERRUPTS (INT_FBUS | INT_FTRGT | INT_PPERR | \
		  INT_RIPERR | INT_PABORT | INT_OCERR)
#define MY_INTERRUPTS (INT_RISCI | ERROR_INTERRUPTS)

/* SYNC, one WRITE per line, one extra WRITE per page boundary, SYNC, JUMP */
#define MAX_RISC_SIZE ((1 + 255 + (PAGE_ALIGN(255 * 4092) / PAGE_SIZE - 1) + 1 + 1) * 8)

/* Cards with configuration information */
enum snd_bt87x_boardid {
SND_BT87X_BOARD_UNKNOWN,
SND_BT87X_BOARD_GENERIC,	/* both an & dig interfaces, 32kHz */
SND_BT87X_BOARD_ANALOG,		/* board with no external A/D */
SND_BT87X_BOARD_OSPREY2x0,
SND_BT87X_BOARD_OSPREY440,
SND_BT87X_BOARD_AVPHONE98,
};

/* Card configuration */
struct snd_bt87x_board {
int dig_rate;		/* Digital input sampling rate */
u32 digital_fmt;	/* Register settings for digital input */
unsigned no_analog:1;	/* No analog input */
unsigned no_digital:1;	/* No digital input */
};

static __devinitdata struct snd_bt87x_board snd_bt87x_boards[] = {
[sND_BT87X_BOARD_UNKNOWN] = {
	.dig_rate = 32000, /* just a guess */
},
[sND_BT87X_BOARD_GENERIC] = {
	.dig_rate = 32000,
},
[sND_BT87X_BOARD_ANALOG] = {
	.no_digital = 1,
},
[sND_BT87X_BOARD_OSPREY2x0] = {
	.dig_rate = 44100,
	.digital_fmt = CTL_DA_LRI | (1 << CTL_DA_LRD_SHIFT),
},
[sND_BT87X_BOARD_OSPREY440] = {
	.dig_rate = 32000,
	.digital_fmt = CTL_DA_LRI | (1 << CTL_DA_LRD_SHIFT),
	.no_analog = 1,
},
[sND_BT87X_BOARD_AVPHONE98] = {
	.dig_rate = 48000,
},
};

struct snd_bt87x {
struct snd_card *card;
struct pci_dev *pci;
struct snd_bt87x_board board;

void __iomem *mmio;
int irq;

spinlock_t reg_lock;
unsigned long opened;
struct snd_pcm_substream *substream;

struct snd_dma_buffer dma_risc;
unsigned int line_bytes;
unsigned int lines;

u32 reg_control;
u32 interrupt_mask;

int current_line;

int pci_parity_errors;
};

enum { DEVICE_DIGITAL, DEVICE_ANALOG };

static inline u32 snd_bt87x_readl(struct snd_bt87x *chip, u32 reg)
{
return readl(chip->mmio + reg);
}

static inline void snd_bt87x_writel(struct snd_bt87x *chip, u32 reg, u32 value)
{
writel(value, chip->mmio + reg);
}

static int snd_bt87x_create_risc(struct snd_bt87x *chip, struct snd_pcm_substream *substream,
		       	 unsigned int periods, unsigned int period_bytes)
{
struct snd_sg_buf *sgbuf = snd_pcm_substream_sgbuf(substream);
unsigned int i, offset;
u32 *risc;

if (chip->dma_risc.area == NULL) {
	if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
				PAGE_ALIGN(MAX_RISC_SIZE), &chip->dma_risc) < 0)
		return -ENOMEM;
}
risc = (u32 *)chip->dma_risc.area;
offset = 0;
*risc++ = cpu_to_le32(RISC_SYNC | RISC_SYNC_FM1);
*risc++ = cpu_to_le32(0);
for (i = 0; i < periods; ++i) {
	u32 rest;

	rest = period_bytes;
	do {
		u32 cmd, len;

		len = PAGE_SIZE - (offset % PAGE_SIZE);
		if (len > rest)
			len = rest;
		cmd = RISC_WRITE | len;
		if (rest == period_bytes) {
			u32 block = i * 16 / periods;
			cmd |= RISC_SOL;
			cmd |= block << RISC_SET_STATUS_SHIFT;
			cmd |= (~block & 0xf) << RISC_RESET_STATUS_SHIFT;
		}
		if (len == rest)
			cmd |= RISC_EOL | RISC_IRQ;
		*risc++ = cpu_to_le32(cmd);
		*risc++ = cpu_to_le32((u32)snd_pcm_sgbuf_get_addr(sgbuf, offset));
		offset += len;
		rest -= len;
	} while (rest > 0);
}
*risc++ = cpu_to_le32(RISC_SYNC | RISC_SYNC_VRO);
*risc++ = cpu_to_le32(0);
*risc++ = cpu_to_le32(RISC_JUMP);
*risc++ = cpu_to_le32(chip->dma_risc.addr);
chip->line_bytes = period_bytes;
chip->lines = periods;
return 0;
}

static void snd_bt87x_free_risc(struct snd_bt87x *chip)
{
if (chip->dma_risc.area) {
	snd_dma_free_pages(&chip->dma_risc);
	chip->dma_risc.area = NULL;
}
}

static void snd_bt87x_pci_error(struct snd_bt87x *chip, unsigned int status)
{
u16 pci_status;

pci_read_config_word(chip->pci, PCI_STATUS, &pci_status);
pci_status &= PCI_STATUS_PARITY | PCI_STATUS_SIG_TARGET_ABORT |
	PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_REC_MASTER_ABORT |
	PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_DETECTED_PARITY;
pci_write_config_word(chip->pci, PCI_STATUS, pci_status);
if (pci_status != PCI_STATUS_DETECTED_PARITY)
	snd_printk(KERN_ERR "Aieee - PCI error! status %#08x, PCI status %#04x\n",
		   status & ERROR_INTERRUPTS, pci_status);
else {
	snd_printk(KERN_ERR "Aieee - PCI parity error detected!\n");
	/* error 'handling' similar to aic7xxx_pci.c: */
	chip->pci_parity_errors++;
	if (chip->pci_parity_errors > 20) {
		snd_printk(KERN_ERR "Too many PCI parity errors observed.\n");
		snd_printk(KERN_ERR "Some device on this bus is generating bad parity.\n");
		snd_printk(KERN_ERR "This is an error *observed by*, not *generated by*, this card.\n");
		snd_printk(KERN_ERR "PCI parity error checking has been disabled.\n");
		chip->interrupt_mask &= ~(INT_PPERR | INT_RIPERR);
		snd_bt87x_writel(chip, REG_INT_MASK, chip->interrupt_mask);
	}
}
}

static irqreturn_t snd_bt87x_interrupt(int irq, void *dev_id)
{
struct snd_bt87x *chip = dev_id;
unsigned int status, irq_status;

status = snd_bt87x_readl(chip, REG_INT_STAT);
irq_status = status & chip->interrupt_mask;
if (!irq_status)
	return IRQ_NONE;
snd_bt87x_writel(chip, REG_INT_STAT, irq_status);

if (irq_status & ERROR_INTERRUPTS) {
	if (irq_status & (INT_FBUS | INT_FTRGT))
		snd_printk(KERN_WARNING "FIFO overrun, status %#08x\n", status);
	if (irq_status & INT_OCERR)
		snd_printk(KERN_ERR "internal RISC error, status %#08x\n", status);
	if (irq_status & (INT_PPERR | INT_RIPERR | INT_PABORT))
		snd_bt87x_pci_error(chip, irq_status);
}
if ((irq_status & INT_RISCI) && (chip->reg_control & CTL_ACAP_EN)) {
	int current_block, irq_block;

	/* assume that exactly one line has been recorded */
	chip->current_line = (chip->current_line + 1) % chip->lines;
	/* but check if some interrupts have been skipped */
	current_block = chip->current_line * 16 / chip->lines;
	irq_block = status >> INT_RISCS_SHIFT;
	if (current_block != irq_block)
		chip->current_line = (irq_block * chip->lines + 15) / 16;

	snd_pcm_period_elapsed(chip->substream);
}
return IRQ_HANDLED;
}

static struct snd_pcm_hardware snd_bt87x_digital_hw = {
.info = SNDRV_PCM_INFO_MMAP |
	SNDRV_PCM_INFO_INTERLEAVED |
	SNDRV_PCM_INFO_BLOCK_TRANSFER |
	SNDRV_PCM_INFO_MMAP_VALID,
.formats = SNDRV_PCM_FMTBIT_S16_LE,
.rates = 0, /* set at runtime */
.channels_min = 2,
.channels_max = 2,
.buffer_bytes_max = 255 * 4092,
.period_bytes_min = 32,
.period_bytes_max = 4092,
.periods_min = 2,
.periods_max = 255,
};

static struct snd_pcm_hardware snd_bt87x_analog_hw = {
.info = SNDRV_PCM_INFO_MMAP |
	SNDRV_PCM_INFO_INTERLEAVED |
	SNDRV_PCM_INFO_BLOCK_TRANSFER |
	SNDRV_PCM_INFO_MMAP_VALID,
.formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S8,
.rates = SNDRV_PCM_RATE_KNOT,
.rate_min = ANALOG_CLOCK / CLOCK_DIV_MAX,
.rate_max = ANALOG_CLOCK / CLOCK_DIV_MIN,
.channels_min = 1,
.channels_max = 1,
.buffer_bytes_max = 255 * 4092,
.period_bytes_min = 32,
.period_bytes_max = 4092,
.periods_min = 2,
.periods_max = 255,
};

static int snd_bt87x_set_digital_hw(struct snd_bt87x *chip, struct snd_pcm_runtime *runtime)
{
chip->reg_control |= CTL_DA_IOM_DA | CTL_A_PWRDN;
runtime->hw = snd_bt87x_digital_hw;
runtime->hw.rates = snd_pcm_rate_to_rate_bit(chip->board.dig_rate);
runtime->hw.rate_min = chip->board.dig_rate;
runtime->hw.rate_max = chip->board.dig_rate;
return 0;
}

static int snd_bt87x_set_analog_hw(struct snd_bt87x *chip, struct snd_pcm_runtime *runtime)
{
static struct snd_ratnum analog_clock = {
	.num = ANALOG_CLOCK,
	.den_min = CLOCK_DIV_MIN,
	.den_max = CLOCK_DIV_MAX,
	.den_step = 1
};
static struct snd_pcm_hw_constraint_ratnums constraint_rates = {
	.nrats = 1,
	.rats = &analog_clock
};

chip->reg_control &= ~(CTL_DA_IOM_DA | CTL_A_PWRDN);
runtime->hw = snd_bt87x_analog_hw;
return snd_pcm_hw_constraint_ratnums(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
				     &constraint_rates);
}

static int snd_bt87x_pcm_open(struct snd_pcm_substream *substream)
{
struct snd_bt87x *chip = snd_pcm_substream_chip(substream);
struct snd_pcm_runtime *runtime = substream->runtime;
int err;

if (test_and_set_bit(0, &chip->opened))
	return -EBUSY;

if (substream->pcm->device == DEVICE_DIGITAL)
	err = snd_bt87x_set_digital_hw(chip, runtime);
else
	err = snd_bt87x_set_analog_hw(chip, runtime);
if (err < 0)
	goto _error;

err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
if (err < 0)
	goto _error;

chip->substream = substream;
return 0;

_error:
clear_bit(0, &chip->opened);
smp_mb__after_clear_bit();
return err;
}

static int snd_bt87x_close(struct snd_pcm_substream *substream)
{
struct snd_bt87x *chip = snd_pcm_substream_chip(substream);

spin_lock_irq(&chip->reg_lock);
chip->reg_control |= CTL_A_PWRDN;
snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
spin_unlock_irq(&chip->reg_lock);

chip->substream = NULL;
clear_bit(0, &chip->opened);
smp_mb__after_clear_bit();
return 0;
}

static int snd_bt87x_hw_params(struct snd_pcm_substream *substream,
		       struct snd_pcm_hw_params *hw_params)
{
struct snd_bt87x *chip = snd_pcm_substream_chip(substream);
int err;

err = snd_pcm_lib_malloc_pages(substream,
			       params_buffer_bytes(hw_params));
if (err < 0)
	return err;
return snd_bt87x_create_risc(chip, substream,
			     params_periods(hw_params),
			     params_period_bytes(hw_params));
}

static int snd_bt87x_hw_free(struct snd_pcm_substream *substream)
{
struct snd_bt87x *chip = snd_pcm_substream_chip(substream);

snd_bt87x_free_risc(chip);
snd_pcm_lib_free_pages(substream);
return 0;
}

static int snd_bt87x_prepare(struct snd_pcm_substream *substream)
{
struct snd_bt87x *chip = snd_pcm_substream_chip(substream);
struct snd_pcm_runtime *runtime = substream->runtime;
int decimation;

spin_lock_irq(&chip->reg_lock);
chip->reg_control &= ~(CTL_DA_SDR_MASK | CTL_DA_SBR);
decimation = (ANALOG_CLOCK + runtime->rate / 4) / runtime->rate;
chip->reg_control |= decimation << CTL_DA_SDR_SHIFT;
if (runtime->format == SNDRV_PCM_FORMAT_S8)
	chip->reg_control |= CTL_DA_SBR;
snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
spin_unlock_irq(&chip->reg_lock);
return 0;
}

static int snd_bt87x_start(struct snd_bt87x *chip)
{
spin_lock(&chip->reg_lock);
chip->current_line = 0;
chip->reg_control |= CTL_FIFO_ENABLE | CTL_RISC_ENABLE | CTL_ACAP_EN;
snd_bt87x_writel(chip, REG_RISC_STRT_ADD, chip->dma_risc.addr);
snd_bt87x_writel(chip, REG_PACKET_LEN,
		 chip->line_bytes | (chip->lines << 16));
snd_bt87x_writel(chip, REG_INT_MASK, chip->interrupt_mask);
snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
spin_unlock(&chip->reg_lock);
return 0;
}

static int snd_bt87x_stop(struct snd_bt87x *chip)
{
spin_lock(&chip->reg_lock);
chip->reg_control &= ~(CTL_FIFO_ENABLE | CTL_RISC_ENABLE | CTL_ACAP_EN);
snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
snd_bt87x_writel(chip, REG_INT_MASK, 0);
snd_bt87x_writel(chip, REG_INT_STAT, MY_INTERRUPTS);
spin_unlock(&chip->reg_lock);
return 0;
}

static int snd_bt87x_trigger(struct snd_pcm_substream *substream, int cmd)
{
struct snd_bt87x *chip = snd_pcm_substream_chip(substream);

switch (cmd) {
case SNDRV_PCM_TRIGGER_START:
	return snd_bt87x_start(chip);
case SNDRV_PCM_TRIGGER_STOP:
	return snd_bt87x_stop(chip);
default:
	return -EINVAL;
}
}

static snd_pcm_uframes_t snd_bt87x_pointer(struct snd_pcm_substream *substream)
{
struct snd_bt87x *chip = snd_pcm_substream_chip(substream);
struct snd_pcm_runtime *runtime = substream->runtime;

return (snd_pcm_uframes_t)bytes_to_frames(runtime, chip->current_line * chip->line_bytes);
}

static struct snd_pcm_ops snd_bt87x_pcm_ops = {
.open = snd_bt87x_pcm_open,
.close = snd_bt87x_close,
.ioctl = snd_pcm_lib_ioctl,
.hw_params = snd_bt87x_hw_params,
.hw_free = snd_bt87x_hw_free,
.prepare = snd_bt87x_prepare,
.trigger = snd_bt87x_trigger,
.pointer = snd_bt87x_pointer,
.page = snd_pcm_sgbuf_ops_page,
};

static int snd_bt87x_capture_volume_info(struct snd_kcontrol *kcontrol,
				 struct snd_ctl_elem_info *info)
{
info->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
info->count = 1;
info->value.integer.min = 0;
info->value.integer.max = 15;
return 0;
}

static int snd_bt87x_capture_volume_get(struct snd_kcontrol *kcontrol,
				struct snd_ctl_elem_value *value)
{
struct snd_bt87x *chip = snd_kcontrol_chip(kcontrol);

value->value.integer.value[0] = (chip->reg_control & CTL_A_GAIN_MASK) >> CTL_A_GAIN_SHIFT;
return 0;
}

static int snd_bt87x_capture_volume_put(struct snd_kcontrol *kcontrol,
				struct snd_ctl_elem_value *value)
{
struct snd_bt87x *chip = snd_kcontrol_chip(kcontrol);
u32 old_control;
int changed;

spin_lock_irq(&chip->reg_lock);
old_control = chip->reg_control;
chip->reg_control = (chip->reg_control & ~CTL_A_GAIN_MASK)
	| (value->value.integer.value[0] << CTL_A_GAIN_SHIFT);
snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
changed = old_control != chip->reg_control;
spin_unlock_irq(&chip->reg_lock);
return changed;
}

static struct snd_kcontrol_new snd_bt87x_capture_volume = {
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
.name = "Capture Volume",
.info = snd_bt87x_capture_volume_info,
.get = snd_bt87x_capture_volume_get,
.put = snd_bt87x_capture_volume_put,
};

#define snd_bt87x_capture_boost_info	snd_ctl_boolean_mono_info

static int snd_bt87x_capture_boost_get(struct snd_kcontrol *kcontrol,
			       struct snd_ctl_elem_value *value)
{
struct snd_bt87x *chip = snd_kcontrol_chip(kcontrol);

value->value.integer.value[0] = !! (chip->reg_control & CTL_A_G2X);
return 0;
}

static int snd_bt87x_capture_boost_put(struct snd_kcontrol *kcontrol,
			       struct snd_ctl_elem_value *value)
{
struct snd_bt87x *chip = snd_kcontrol_chip(kcontrol);
u32 old_control;
int changed;

spin_lock_irq(&chip->reg_lock);
old_control = chip->reg_control;
chip->reg_control = (chip->reg_control & ~CTL_A_G2X)
	| (value->value.integer.value[0] ? CTL_A_G2X : 0);
snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
changed = chip->reg_control != old_control;
spin_unlock_irq(&chip->reg_lock);
return changed;
}

static struct snd_kcontrol_new snd_bt87x_capture_boost = {
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
.name = "Capture Boost",
.info = snd_bt87x_capture_boost_info,
.get = snd_bt87x_capture_boost_get,
.put = snd_bt87x_capture_boost_put,
};

static int snd_bt87x_capture_source_info(struct snd_kcontrol *kcontrol,
				 struct snd_ctl_elem_info *info)
{
static char *texts[3] = {"TV Tuner", "FM", "Mic/Line"};

info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
info->count = 1;
info->value.enumerated.items = 3;
if (info->value.enumerated.item > 2)
	info->value.enumerated.item = 2;
strcpy(info->value.enumerated.name, texts[info->value.enumerated.item]);
return 0;
}

static int snd_bt87x_capture_source_get(struct snd_kcontrol *kcontrol,
				struct snd_ctl_elem_value *value)
{
struct snd_bt87x *chip = snd_kcontrol_chip(kcontrol);

value->value.enumerated.item[0] = (chip->reg_control & CTL_A_SEL_MASK) >> CTL_A_SEL_SHIFT;
return 0;
}

static int snd_bt87x_capture_source_put(struct snd_kcontrol *kcontrol,
				struct snd_ctl_elem_value *value)
{
struct snd_bt87x *chip = snd_kcontrol_chip(kcontrol);
u32 old_control;
int changed;

spin_lock_irq(&chip->reg_lock);
old_control = chip->reg_control;
chip->reg_control = (chip->reg_control & ~CTL_A_SEL_MASK)
	| (value->value.enumerated.item[0] << CTL_A_SEL_SHIFT);
snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
changed = chip->reg_control != old_control;
spin_unlock_irq(&chip->reg_lock);
return changed;
}

static struct snd_kcontrol_new snd_bt87x_capture_source = {
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
.name = "Capture Source",
.info = snd_bt87x_capture_source_info,
.get = snd_bt87x_capture_source_get,
.put = snd_bt87x_capture_source_put,
};

static int snd_bt87x_free(struct snd_bt87x *chip)
{
if (chip->mmio) {
	snd_bt87x_stop(chip);
	if (chip->irq >= 0)
		synchronize_irq(chip->irq);

	iounmap(chip->mmio);
}
if (chip->irq >= 0)
	free_irq(chip->irq, chip);
pci_release_regions(chip->pci);
pci_disable_device(chip->pci);
kfree(chip);
return 0;
}

static int snd_bt87x_dev_free(struct snd_device *device)
{
struct snd_bt87x *chip = device->device_data;
return snd_bt87x_free(chip);
}

static int __devinit snd_bt87x_pcm(struct snd_bt87x *chip, int device, char *name)
{
int err;
struct snd_pcm *pcm;

err = snd_pcm_new(chip->card, name, device, 0, 1, &pcm);
if (err < 0)
	return err;
pcm->private_data = chip;
strcpy(pcm->name, name);
snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_bt87x_pcm_ops);
return snd_pcm_lib_preallocate_pages_for_all(pcm,
					     SNDRV_DMA_TYPE_DEV_SG,
					     snd_dma_pci_data(chip->pci),
						128 * 1024,
						ALIGN(255 * 4092, 1024));
}

static int __devinit snd_bt87x_create(struct snd_card *card,
			      struct pci_dev *pci,
			      struct snd_bt87x **rchip)
{
struct snd_bt87x *chip;
int err;
static struct snd_device_ops ops = {
	.dev_free = snd_bt87x_dev_free
};

*rchip = NULL;

err = pci_enable_device(pci);
if (err < 0)
	return err;

chip = kzalloc(sizeof(*chip), GFP_KERNEL);
if (!chip) {
	pci_disable_device(pci);
	return -ENOMEM;
}
chip->card = card;
chip->pci = pci;
chip->irq = -1;
spin_lock_init(&chip->reg_lock);

if ((err = pci_request_regions(pci, "Bt87x audio")) < 0) {
	kfree(chip);
	pci_disable_device(pci);
	return err;
}
chip->mmio = ioremap_nocache(pci_resource_start(pci, 0),
			     pci_resource_len(pci, 0));
if (!chip->mmio) {
	snd_printk(KERN_ERR "cannot remap io memory\n");
	err = -ENOMEM;
	goto fail;
}

chip->reg_control = CTL_A_PWRDN | CTL_DA_ES2 |
		    CTL_PKTP_16 | (15 << CTL_DA_SDR_SHIFT);
chip->interrupt_mask = MY_INTERRUPTS;
snd_bt87x_writel(chip, REG_GPIO_DMA_CTL, chip->reg_control);
snd_bt87x_writel(chip, REG_INT_MASK, 0);
snd_bt87x_writel(chip, REG_INT_STAT, MY_INTERRUPTS);

err = request_irq(pci->irq, snd_bt87x_interrupt, IRQF_SHARED,
		  "Bt87x audio", chip);
if (err < 0) {
	snd_printk(KERN_ERR "cannot grab irq %d\n", pci->irq);
	goto fail;
}
chip->irq = pci->irq;
pci_set_master(pci);
synchronize_irq(chip->irq);

err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
if (err < 0)
	goto fail;

snd_card_set_dev(card, &pci->dev);
*rchip = chip;
return 0;

fail:
snd_bt87x_free(chip);
return err;
}

#define BT_DEVICE(chip, subvend, subdev, id) \
{ .vendor = PCI_VENDOR_ID_BROOKTREE, \
  .device = chip, \
  .subvendor = subvend, .subdevice = subdev, \
  .driver_data = SND_BT87X_BOARD_ ## id }
/* driver_data is the card id for that device */

static struct pci_device_id snd_bt87x_ids[] = {
/* Hauppauge WinTV series */
BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x0070, 0x13eb, GENERIC),
/* Hauppauge WinTV series */
BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_879, 0x0070, 0x13eb, GENERIC),
/* Viewcast Osprey 200 */
BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x0070, 0xff01, OSPREY2x0),
/* Viewcast Osprey 440 (rate is configurable via gpio) */
BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x0070, 0xff07, OSPREY440),
/* ATI TV-Wonder */
BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x1002, 0x0001, GENERIC),
/* Leadtek Winfast tv 2000xp delux */
BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x107d, 0x6606, GENERIC),
/* Voodoo TV 200 */
BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x121a, 0x3000, GENERIC),
/* AVerMedia Studio No. 103, 203, .... */
BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x1461, 0x0003, AVPHONE98),
/* Prolink PixelView PV-M4900 */
BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x1554, 0x4011, GENERIC),
/* Pinnacle  Studio PCTV rave */
BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0xbd11, 0x1200, GENERIC),
{ }
};
MODULE_DEVICE_TABLE(pci, snd_bt87x_ids);

/* cards known not to have audio
* (DVB cards use the audio function to transfer MPEG data) */
static struct {
unsigned short subvendor, subdevice;
} blacklist[] __devinitdata = {
{0x0071, 0x0101}, /* Nebula Electronics DigiTV */
{0x11bd, 0x001c}, /* Pinnacle PCTV Sat */
{0x11bd, 0x0026}, /* Pinnacle PCTV SAT CI */
{0x1461, 0x0761}, /* AVermedia AverTV DVB-T */
{0x1461, 0x0771}, /* AVermedia DVB-T 771 */
{0x1822, 0x0001}, /* Twinhan VisionPlus DVB-T */
{0x18ac, 0xd500}, /* DVICO FusionHDTV 5 Lite */
{0x18ac, 0xdb10}, /* DVICO FusionHDTV DVB-T Lite */
{0x18ac, 0xdb11}, /* Ultraview DVB-T Lite */
{0x270f, 0xfc00}, /* Chaintech Digitop DST-1000 DVB-S */
{0x7063, 0x2000}, /* pcHDTV HD-2000 TV */
};

static struct pci_driver driver;

/* return the id of the card, or a negative value if it's blacklisted */
static int __devinit snd_bt87x_detect_card(struct pci_dev *pci)
{
int i;
const struct pci_device_id *supported;

supported = pci_match_id(snd_bt87x_ids, pci);
if (supported && supported->driver_data > 0)
	return supported->driver_data;

for (i = 0; i < ARRAY_SIZE(blacklist); ++i)
	if (blacklist[i].subvendor == pci->subsystem_vendor &&
	    blacklist[i].subdevice == pci->subsystem_device) {
		snd_printdd(KERN_INFO "card %#04x-%#04x:%#04x has no audio\n",
			    pci->device, pci->subsystem_vendor, pci->subsystem_device);
		return -EBUSY;
	}

snd_printk(KERN_INFO "unknown card %#04x-%#04x:%#04x\n",
	   pci->device, pci->subsystem_vendor, pci->subsystem_device);
snd_printk(KERN_DEBUG "please mail id, board name, and, "
	   "if it works, the correct digital_rate option to "
	   "<[email protected]>\n");
return SND_BT87X_BOARD_UNKNOWN;
}

static int __devinit snd_bt87x_probe(struct pci_dev *pci,
			     const struct pci_device_id *pci_id)
{
static int dev;
struct snd_card *card;
struct snd_bt87x *chip;
int err;
enum snd_bt87x_boardid boardid;

if (!pci_id->driver_data) {
	err = snd_bt87x_detect_card(pci);
	if (err < 0)
		return -ENODEV;
	boardid = err;
} else
	boardid = pci_id->driver_data;

if (dev >= SNDRV_CARDS)
	return -ENODEV;
if (!enable[dev]) {
	++dev;
	return -ENOENT;
}

card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
if (!card)
	return -ENOMEM;

err = snd_bt87x_create(card, pci, &chip);
if (err < 0)
	goto _error;

memcpy(&chip->board, &snd_bt87x_boards[boardid], sizeof(chip->board));

if (!chip->board.no_digital) {
	if (digital_rate[dev] > 0)
		chip->board.dig_rate = digital_rate[dev];

	chip->reg_control |= chip->board.digital_fmt;

	err = snd_bt87x_pcm(chip, DEVICE_DIGITAL, "Bt87x Digital");
	if (err < 0)
		goto _error;
}
if (!chip->board.no_analog) {
	err = snd_bt87x_pcm(chip, DEVICE_ANALOG, "Bt87x Analog");
	if (err < 0)
		goto _error;
	err = snd_ctl_add(card, snd_ctl_new1(
			  &snd_bt87x_capture_volume, chip));
	if (err < 0)
		goto _error;
	err = snd_ctl_add(card, snd_ctl_new1(
			  &snd_bt87x_capture_boost, chip));
	if (err < 0)
		goto _error;
	err = snd_ctl_add(card, snd_ctl_new1(
			  &snd_bt87x_capture_source, chip));
	if (err < 0)
		goto _error;
}
snd_printk(KERN_INFO "bt87x%d: Using board %d, %sanalog, %sdigital "
	   "(rate %d Hz)\n", dev, boardid,
	   chip->board.no_analog ? "no " : "",
	   chip->board.no_digital ? "no " : "", chip->board.dig_rate);

strcpy(card->driver, "Bt87x");
sprintf(card->shortname, "Brooktree Bt%x", pci->device);
sprintf(card->longname, "%s at %#llx, irq %i",
	card->shortname, (unsigned long long)pci_resource_start(pci, 0),
	chip->irq);
strcpy(card->mixername, "Bt87x");

err = snd_card_register(card);
if (err < 0)
	goto _error;

pci_set_drvdata(pci, card);
++dev;
return 0;

_error:
snd_card_free(card);
return err;
}

static void __devexit snd_bt87x_remove(struct pci_dev *pci)
{
snd_card_free(pci_get_drvdata(pci));
pci_set_drvdata(pci, NULL);
}

/* default entries for all Bt87x cards - it's not exported */
/* driver_data is set to 0 to call detection */
static struct pci_device_id snd_bt87x_default_ids[] __devinitdata = {
BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, PCI_ANY_ID, PCI_ANY_ID, UNKNOWN),
BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_879, PCI_ANY_ID, PCI_ANY_ID, UNKNOWN),
{ }
};

static struct pci_driver driver = {
.name = "Bt87x",
.id_table = snd_bt87x_ids,
.probe = snd_bt87x_probe,
.remove = __devexit_p(snd_bt87x_remove),
};

static int __init alsa_card_bt87x_init(void)
{
if (load_all)
	driver.id_table = snd_bt87x_default_ids;
return pci_register_driver(&driver);
}

static void __exit alsa_card_bt87x_exit(void)
{
pci_unregister_driver(&driver);
}

module_init(alsa_card_bt87x_init)
module_exit(alsa_card_bt87x_exit)

 

Αρα το header files που θελει ειναι στην αρχη και οριζονται με include:

>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/slab.h>
#include <linux/moduleparam.h>
#include <linux/bitops.h>
#include <asm/io.h>
#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/control.h>
#include <sound/initval.h>

 

Του δινω: [user@domain _com]# gcc -o snd-bt87x.ko '/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c' -L '/usr/src/linux-2.6.25-ARCH/include'

 

και πεταει errors. To ιδιο και με .o

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

>
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:24:24: error: linux/init.h: No such file or directory
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:25:29: error: linux/interrupt.h: No such file or directory
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:27:24: error: linux/slab.h: No such file or directory
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:28:31: error: linux/moduleparam.h: No such file or directory
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:29:26: error: linux/bitops.h: No such file or directory
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:30:20: error: asm/io.h: No such file or directory
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:31:24: error: sound/core.h: No such file or directory
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:32:23: error: sound/pcm.h: No such file or directory
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:33:30: error: sound/pcm_params.h: No such file or directory
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:34:27: error: sound/control.h: No such file or directory
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:35:27: error: sound/initval.h: No such file or directory
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:37: error: expected declaration specifiers or '...' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:37: warning: data definition has no type or storage class
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:38: error: expected declaration specifiers or '...' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:38: warning: data definition has no type or storage class
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:39: error: expected declaration specifiers or '...' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:39: warning: data definition has no type or storage class
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:40: error: expected declaration specifiers or '...' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:40: warning: data definition has no type or storage class
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:43: error: 'SNDRV_CARDS' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:43: error: array index in initializer not of integer type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:43: error: (near initialization for 'index')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:44: error: 'SNDRV_DEFAULT_STR' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:45: error: 'SNDRV_DEFAULT_ENABLE_PNP' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:49: error: expected ')' before 'int'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:50: error: expected ')' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:51: error: expected ')' before numeric constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:52: error: expected ')' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:53: error: expected ')' before numeric constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:54: error: expected ')' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:55: error: expected ')' before 'int'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:56: error: expected ')' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:57: error: expected ')' before numeric constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:58: error: expected ')' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:158: error: expected specifier-qualifier-list before 'u32'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:163: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'struct'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:192: error: expected ':', ',', ';', '}' or '__attribute__' before '*' token
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:213: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'snd_bt87x_readl'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:218: error: expected declaration specifiers or '...' before 'u32'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:218: error: expected declaration specifiers or '...' before 'u32'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_writel':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:220: error: 'value' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:220: error: (Each undeclared identifier is reported only once
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:220: error: for each function it appears in.)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:220: error: 'struct snd_bt87x' has no member named 'mmio'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:220: error: 'reg' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:224: warning: 'struct snd_pcm_substream' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:224: warning: its scope is only this definition or declaration, which is probably not what you want
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_create_risc':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:226: warning: initialization makes pointer from integer without a cast
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:228: error: 'u32' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:228: error: 'risc' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:230: error: 'struct snd_bt87x' has no member named 'dma_risc'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:230: error: 'NULL' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:231: error: 'SNDRV_DMA_TYPE_DEV' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:232: error: 'PAGE_SIZE' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:232: error: 'struct snd_bt87x' has no member named 'dma_risc'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:233: error: 'ENOMEM' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:235: error: expected expression before ')' token
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:240: error: expected ';' before 'rest'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:242: error: 'rest' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:244: error: expected ';' before 'cmd'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:246: error: 'len' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:249: error: 'cmd' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:251: error: expected ';' before 'block'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:253: error: 'block' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:259: error: expected ')' before 'snd_pcm_sgbuf_get_addr'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:267: error: 'struct snd_bt87x' has no member named 'dma_risc'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:268: error: 'struct snd_bt87x' has no member named 'line_bytes'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:269: error: 'struct snd_bt87x' has no member named 'lines'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_free_risc':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:275: error: 'struct snd_bt87x' has no member named 'dma_risc'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:276: error: 'struct snd_bt87x' has no member named 'dma_risc'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:277: error: 'struct snd_bt87x' has no member named 'dma_risc'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:277: error: 'NULL' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_pci_error':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:283: error: 'u16' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:283: error: expected ';' before 'pci_status'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:285: error: 'pci_status' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:291: error: 'KERN_ERR' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:291: error: expected ')' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:294: error: expected ')' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:296: error: 'struct snd_bt87x' has no member named 'pci_parity_errors'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:297: error: 'struct snd_bt87x' has no member named 'pci_parity_errors'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:298: error: expected ')' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:299: error: expected ')' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:300: error: expected ')' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:301: error: expected ')' before string constant
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:302: error: 'struct snd_bt87x' has no member named 'interrupt_mask'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:303: error: 'struct snd_bt87x' has no member named 'interrupt_mask'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:303: error: too many arguments to function 'snd_bt87x_writel'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:308: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'snd_bt87x_interrupt'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:343: error: variable 'snd_bt87x_digital_hw' has initializer but incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:344: error: unknown field 'info' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:344: error: 'SNDRV_PCM_INFO_MMAP' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:345: error: 'SNDRV_PCM_INFO_INTERLEAVED' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:346: error: 'SNDRV_PCM_INFO_BLOCK_TRANSFER' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:347: error: 'SNDRV_PCM_INFO_MMAP_VALID' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:347: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:347: warning: (near initialization for 'snd_bt87x_digital_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:348: error: unknown field 'formats' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:348: error: 'SNDRV_PCM_FMTBIT_S16_LE' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:348: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:348: warning: (near initialization for 'snd_bt87x_digital_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:349: error: unknown field 'rates' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:349: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:349: warning: (near initialization for 'snd_bt87x_digital_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:350: error: unknown field 'channels_min' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:350: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:350: warning: (near initialization for 'snd_bt87x_digital_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:351: error: unknown field 'channels_max' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:351: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:351: warning: (near initialization for 'snd_bt87x_digital_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:352: error: unknown field 'buffer_bytes_max' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:352: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:352: warning: (near initialization for 'snd_bt87x_digital_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:353: error: unknown field 'period_bytes_min' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:353: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:353: warning: (near initialization for 'snd_bt87x_digital_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:354: error: unknown field 'period_bytes_max' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:354: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:354: warning: (near initialization for 'snd_bt87x_digital_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:355: error: unknown field 'periods_min' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:355: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:355: warning: (near initialization for 'snd_bt87x_digital_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:356: error: unknown field 'periods_max' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:356: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:356: warning: (near initialization for 'snd_bt87x_digital_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:359: error: variable 'snd_bt87x_analog_hw' has initializer but incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:360: error: unknown field 'info' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:363: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:363: warning: (near initialization for 'snd_bt87x_analog_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:364: error: unknown field 'formats' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:364: error: 'SNDRV_PCM_FMTBIT_S8' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:364: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:364: warning: (near initialization for 'snd_bt87x_analog_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:365: error: unknown field 'rates' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:365: error: 'SNDRV_PCM_RATE_KNOT' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:365: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:365: warning: (near initialization for 'snd_bt87x_analog_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:366: error: unknown field 'rate_min' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:366: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:366: warning: (near initialization for 'snd_bt87x_analog_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:367: error: unknown field 'rate_max' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:367: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:367: warning: (near initialization for 'snd_bt87x_analog_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:368: error: unknown field 'channels_min' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:368: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:368: warning: (near initialization for 'snd_bt87x_analog_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:369: error: unknown field 'channels_max' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:369: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:369: warning: (near initialization for 'snd_bt87x_analog_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:370: error: unknown field 'buffer_bytes_max' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:370: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:370: warning: (near initialization for 'snd_bt87x_analog_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:371: error: unknown field 'period_bytes_min' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:371: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:371: warning: (near initialization for 'snd_bt87x_analog_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:372: error: unknown field 'period_bytes_max' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:372: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:372: warning: (near initialization for 'snd_bt87x_analog_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:373: error: unknown field 'periods_min' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:373: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:373: warning: (near initialization for 'snd_bt87x_analog_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:374: error: unknown field 'periods_max' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:374: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:374: warning: (near initialization for 'snd_bt87x_analog_hw')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:377: warning: 'struct snd_pcm_runtime' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_set_digital_hw':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:379: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:380: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:381: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:382: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:383: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:387: warning: 'struct snd_pcm_runtime' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_set_analog_hw':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:389: error: variable 'analog_clock' has initializer but incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:390: error: unknown field 'num' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:390: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:390: warning: (near initialization for 'analog_clock')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:391: error: unknown field 'den_min' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:391: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:391: warning: (near initialization for 'analog_clock')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:392: error: unknown field 'den_max' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:392: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:392: warning: (near initialization for 'analog_clock')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:393: error: unknown field 'den_step' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:394: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:394: warning: (near initialization for 'analog_clock')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:389: error: storage size of 'analog_clock' isn't known
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:395: error: variable 'constraint_rates' has initializer but incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:396: error: unknown field 'nrats' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:396: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:396: warning: (near initialization for 'constraint_rates')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:397: error: unknown field 'rats' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:398: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:398: warning: (near initialization for 'constraint_rates')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:395: error: storage size of 'constraint_rates' isn't known
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:400: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:401: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:402: error: 'SNDRV_PCM_HW_PARAM_RATE' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:406: warning: 'struct snd_pcm_substream' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_pcm_open':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:408: warning: initialization makes pointer from integer without a cast
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:409: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:412: error: 'struct snd_bt87x' has no member named 'opened'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:413: error: 'EBUSY' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:415: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:416: warning: passing argument 2 of 'snd_bt87x_set_digital_hw' from incompatible pointer type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:418: warning: passing argument 2 of 'snd_bt87x_set_analog_hw' from incompatible pointer type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:422: error: 'SNDRV_PCM_HW_PARAM_PERIODS' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:426: error: 'struct snd_bt87x' has no member named 'substream'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:430: error: 'struct snd_bt87x' has no member named 'opened'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:435: warning: 'struct snd_pcm_substream' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_close':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:437: warning: initialization makes pointer from integer without a cast
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:439: error: 'struct snd_bt87x' has no member named 'reg_lock'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:440: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:441: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:441: error: too many arguments to function 'snd_bt87x_writel'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:442: error: 'struct snd_bt87x' has no member named 'reg_lock'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:444: error: 'struct snd_bt87x' has no member named 'substream'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:444: error: 'NULL' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:445: error: 'struct snd_bt87x' has no member named 'opened'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:451: warning: 'struct snd_pcm_hw_params' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:451: warning: 'struct snd_pcm_substream' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_hw_params':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:453: warning: initialization makes pointer from integer without a cast
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:462: warning: passing argument 2 of 'snd_bt87x_create_risc' from incompatible pointer type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:465: warning: 'struct snd_pcm_substream' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_hw_free':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:467: warning: initialization makes pointer from integer without a cast
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:474: warning: 'struct snd_pcm_substream' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_prepare':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:476: warning: initialization makes pointer from integer without a cast
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:477: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:480: error: 'struct snd_bt87x' has no member named 'reg_lock'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:481: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:482: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:482: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:483: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:484: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:484: error: 'SNDRV_PCM_FORMAT_S8' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:485: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:486: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:486: error: too many arguments to function 'snd_bt87x_writel'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:487: error: 'struct snd_bt87x' has no member named 'reg_lock'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_start':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:493: error: 'struct snd_bt87x' has no member named 'reg_lock'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:494: error: 'struct snd_bt87x' has no member named 'current_line'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:495: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:496: error: 'struct snd_bt87x' has no member named 'dma_risc'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:496: error: too many arguments to function 'snd_bt87x_writel'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:498: error: 'struct snd_bt87x' has no member named 'line_bytes'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:498: error: 'struct snd_bt87x' has no member named 'lines'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:498: error: too many arguments to function 'snd_bt87x_writel'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:499: error: 'struct snd_bt87x' has no member named 'interrupt_mask'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:499: error: too many arguments to function 'snd_bt87x_writel'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:500: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:500: error: too many arguments to function 'snd_bt87x_writel'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:501: error: 'struct snd_bt87x' has no member named 'reg_lock'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_stop':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:507: error: 'struct snd_bt87x' has no member named 'reg_lock'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:508: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:509: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:509: error: too many arguments to function 'snd_bt87x_writel'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:510: error: too many arguments to function 'snd_bt87x_writel'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:511: error: too many arguments to function 'snd_bt87x_writel'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:512: error: 'struct snd_bt87x' has no member named 'reg_lock'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:516: warning: 'struct snd_pcm_substream' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_trigger':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:518: warning: initialization makes pointer from integer without a cast
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:521: error: 'SNDRV_PCM_TRIGGER_START' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:523: error: 'SNDRV_PCM_TRIGGER_STOP' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:526: error: 'EINVAL' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:530: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'snd_bt87x_pointer'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:538: error: variable 'snd_bt87x_pcm_ops' has initializer but incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:539: error: unknown field 'open' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:539: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:539: warning: (near initialization for 'snd_bt87x_pcm_ops')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:540: error: unknown field 'close' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:540: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:540: warning: (near initialization for 'snd_bt87x_pcm_ops')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:541: error: unknown field 'ioctl' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:541: error: 'snd_pcm_lib_ioctl' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:541: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:541: warning: (near initialization for 'snd_bt87x_pcm_ops')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:542: error: unknown field 'hw_params' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:542: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:542: warning: (near initialization for 'snd_bt87x_pcm_ops')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:543: error: unknown field 'hw_free' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:543: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:543: warning: (near initialization for 'snd_bt87x_pcm_ops')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:544: error: unknown field 'prepare' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:544: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:544: warning: (near initialization for 'snd_bt87x_pcm_ops')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:545: error: unknown field 'trigger' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:545: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:545: warning: (near initialization for 'snd_bt87x_pcm_ops')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:546: error: unknown field 'pointer' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:546: error: 'snd_bt87x_pointer' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:546: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:546: warning: (near initialization for 'snd_bt87x_pcm_ops')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:547: error: unknown field 'page' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:547: error: 'snd_pcm_sgbuf_ops_page' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:547: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:547: warning: (near initialization for 'snd_bt87x_pcm_ops')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:551: warning: 'struct snd_ctl_elem_info' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:551: warning: 'struct snd_kcontrol' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_capture_volume_info':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:553: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:553: error: 'SNDRV_CTL_ELEM_TYPE_INTEGER' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:554: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:555: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:556: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:561: warning: 'struct snd_ctl_elem_value' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:561: warning: 'struct snd_kcontrol' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_capture_volume_get':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:563: warning: initialization makes pointer from integer without a cast
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:565: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:565: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:570: warning: 'struct snd_ctl_elem_value' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:570: warning: 'struct snd_kcontrol' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_capture_volume_put':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:572: warning: initialization makes pointer from integer without a cast
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:573: error: 'u32' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:573: error: expected ';' before 'old_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:576: error: 'struct snd_bt87x' has no member named 'reg_lock'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:577: error: 'old_control' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:577: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:578: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:578: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:579: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:580: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:580: error: too many arguments to function 'snd_bt87x_writel'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:581: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:582: error: 'struct snd_bt87x' has no member named 'reg_lock'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:586: error: variable 'snd_bt87x_capture_volume' has initializer but incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:587: error: unknown field 'iface' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:587: error: 'SNDRV_CTL_ELEM_IFACE_MIXER' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:587: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:587: warning: (near initialization for 'snd_bt87x_capture_volume')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:588: error: unknown field 'name' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:588: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:588: warning: (near initialization for 'snd_bt87x_capture_volume')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:589: error: unknown field 'info' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:589: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:589: warning: (near initialization for 'snd_bt87x_capture_volume')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:590: error: unknown field 'get' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:590: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:590: warning: (near initialization for 'snd_bt87x_capture_volume')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:591: error: unknown field 'put' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:591: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:591: warning: (near initialization for 'snd_bt87x_capture_volume')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:597: warning: 'struct snd_ctl_elem_value' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:597: warning: 'struct snd_kcontrol' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_capture_boost_get':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:599: warning: initialization makes pointer from integer without a cast
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:601: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:601: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:606: warning: 'struct snd_ctl_elem_value' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:606: warning: 'struct snd_kcontrol' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_capture_boost_put':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:608: warning: initialization makes pointer from integer without a cast
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:609: error: 'u32' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:609: error: expected ';' before 'old_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:612: error: 'struct snd_bt87x' has no member named 'reg_lock'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:613: error: 'old_control' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:613: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:614: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:614: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:615: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:616: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:616: error: too many arguments to function 'snd_bt87x_writel'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:617: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:618: error: 'struct snd_bt87x' has no member named 'reg_lock'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:622: error: variable 'snd_bt87x_capture_boost' has initializer but incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:623: error: unknown field 'iface' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:623: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:623: warning: (near initialization for 'snd_bt87x_capture_boost')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:624: error: unknown field 'name' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:624: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:624: warning: (near initialization for 'snd_bt87x_capture_boost')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:625: error: unknown field 'info' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:625: error: 'snd_ctl_boolean_mono_info' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:625: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:625: warning: (near initialization for 'snd_bt87x_capture_boost')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:626: error: unknown field 'get' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:626: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:626: warning: (near initialization for 'snd_bt87x_capture_boost')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:627: error: unknown field 'put' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:627: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:627: warning: (near initialization for 'snd_bt87x_capture_boost')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:631: warning: 'struct snd_ctl_elem_info' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:631: warning: 'struct snd_kcontrol' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_capture_source_info':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:635: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:635: error: 'SNDRV_CTL_ELEM_TYPE_ENUMERATED' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:636: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:637: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:638: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:639: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:640: warning: incompatible implicit declaration of built-in function 'strcpy'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:640: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:640: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:645: warning: 'struct snd_ctl_elem_value' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:645: warning: 'struct snd_kcontrol' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_capture_source_get':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:647: warning: initialization makes pointer from integer without a cast
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:649: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:649: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:654: warning: 'struct snd_ctl_elem_value' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:654: warning: 'struct snd_kcontrol' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_capture_source_put':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:656: warning: initialization makes pointer from integer without a cast
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:657: error: 'u32' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:657: error: expected ';' before 'old_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:660: error: 'struct snd_bt87x' has no member named 'reg_lock'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:661: error: 'old_control' undeclared (first use in this function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:661: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:662: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:662: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:663: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:664: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:664: error: too many arguments to function 'snd_bt87x_writel'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:665: error: 'struct snd_bt87x' has no member named 'reg_control'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:666: error: 'struct snd_bt87x' has no member named 'reg_lock'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:670: error: variable 'snd_bt87x_capture_source' has initializer but incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:671: error: unknown field 'iface' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:671: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:671: warning: (near initialization for 'snd_bt87x_capture_source')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:672: error: unknown field 'name' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:672: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:672: warning: (near initialization for 'snd_bt87x_capture_source')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:673: error: unknown field 'info' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:673: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:673: warning: (near initialization for 'snd_bt87x_capture_source')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:674: error: unknown field 'get' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:674: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:674: warning: (near initialization for 'snd_bt87x_capture_source')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:675: error: unknown field 'put' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:675: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:675: warning: (near initialization for 'snd_bt87x_capture_source')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_free':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:680: error: 'struct snd_bt87x' has no member named 'mmio'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:682: error: 'struct snd_bt87x' has no member named 'irq'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:683: error: 'struct snd_bt87x' has no member named 'irq'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:685: error: 'struct snd_bt87x' has no member named 'mmio'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:687: error: 'struct snd_bt87x' has no member named 'irq'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:688: error: 'struct snd_bt87x' has no member named 'irq'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:695: warning: 'struct snd_device' declared inside parameter list
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'snd_bt87x_dev_free':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:697: error: dereferencing pointer to incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: At top level:
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:701: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'snd_bt87x_pcm'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:719: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'snd_bt87x_create'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:795: error: array type has incomplete element type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:797: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:797: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:797: error: 'PCI_VENDOR_ID_BROOKTREE' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:797: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:797: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:797: error: 'PCI_DEVICE_ID_BROOKTREE_878' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:797: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:797: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:797: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:797: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:797: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:797: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:799: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:799: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:799: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:799: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:799: error: 'PCI_DEVICE_ID_BROOKTREE_879' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:799: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:799: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:799: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:799: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:799: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:799: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:801: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:801: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:801: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:801: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:801: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:801: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:801: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:801: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:801: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:801: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:803: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:803: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:803: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:803: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:803: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:803: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:803: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:803: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:803: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:803: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:805: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:805: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:805: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:805: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:805: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:805: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:805: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:805: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:805: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:805: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:807: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:807: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:807: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:807: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:807: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:807: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:807: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:807: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:807: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:807: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:809: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:809: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:809: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:809: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:809: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:809: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:809: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:809: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:809: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:809: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:811: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:811: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:811: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:811: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:811: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:811: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:811: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:811: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:811: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:811: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:813: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:813: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:813: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:813: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:813: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:813: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:813: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:813: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:813: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:813: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:815: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:815: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:815: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:815: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:815: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:815: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:815: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:815: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:815: error: field name not in record or union initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:815: error: (near initialization for 'snd_bt87x_ids')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:818: warning: data definition has no type or storage class
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:818: warning: parameter names (without types) in function declaration
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:824: error: expected '=', ',', ';', 'asm' or '__attribute__' before '__devinitdata'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:841: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'snd_bt87x_detect_card'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:866: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'snd_bt87x_probe'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:952: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'snd_bt87x_remove'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:960: error: expected '=', ',', ';', 'asm' or '__attribute__' before '__devinitdata'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:966: error: variable 'driver' has initializer but incomplete type
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:967: error: unknown field 'name' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:967: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:967: warning: (near initialization for 'driver')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:968: error: unknown field 'id_table' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:968: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:968: warning: (near initialization for 'driver')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:969: error: unknown field 'probe' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:969: error: 'snd_bt87x_probe' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:969: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:969: warning: (near initialization for 'driver')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:970: error: unknown field 'remove' specified in initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:970: error: 'snd_bt87x_remove' undeclared here (not in a function)
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:970: warning: excess elements in struct initializer
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:970: warning: (near initialization for 'driver')
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:973: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'alsa_card_bt87x_init'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:980: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'alsa_card_bt87x_exit'
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c: In function 'module_init':
/_com/alsa/alsa-driver-1.0.16/alsa-kernel/pci/bt87x.c:986: error: expected declaration specifiers before 'module_exit'

 

Κατι σαν να μην βρησκει τα header πεταει...

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Ευχαριστω NullScan.

Τελικα καταφερα να το κανω σε μορφη .ko

με ./configure και make (το κανει τελικα)

αλλα δεν μπορω να το φορτωσω γιατι πεταει error για κατι λαθος parameters (προσπαθω να φτιαξω σωστα το mod στον κωδικα)

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Εχω βρει εδω και κατι χρονια στη σελιδα του Domenech οτι μπορεις να μετατρεψεις το tvtuner σου σε A/D converter

(Analog to Digital).

Μεχρι στιγμης εκανα mod το aplay του alsa-utils και φτανει μεχρι τα 448000Hz απο τα 192000.

Αλλα στο baudline ειμαι ακομα περιορισμενος στα 192000.

Το module τλκ το κανει compile με τα make αρχεια.

Εκανα configure με την παραμετρο --with-card-options=bt87x-overclock

Φαινεται στον κωδικα:

>
#define ANALOG_CLOCK 1792000
#ifdef CONFIG_SND_BT87X_OVERCLOCK
#define CLOCK_DIV_MIN 1
#else
#define CLOCK_DIV_MIN 4
#endif
#define CLOCK_DIV_MAX 15

και

>
.rate_min = ANALOG_CLOCK / CLOCK_DIV_MAX,
.rate_max = ANALOG_CLOCK / CLOCK_DIV_MIN,

Αλλαζει δλδ ο διαιρετης με η χωρις το overclock.

 

Αλλα το ατιμο το .ko δεν λεει να φορτωσει.

Δοκιμασα insmod και manual να το αντιγραψω στο φακελο των modules αλλα πεταει το ιδιο error παντα κατι για wrong parameters.

Μολις τωρα ειδα στο SUPPORTED_KERNELS οτι:

>
The alsa-drivers in this package are designed for the following kernels:

- Vanilla 2.6.23 or earlier
- Vanilla 2.4.31 or earlier
- Vanilla 2.2.26 or earlier

It's not guaranteed that they work with any newer version than above
or modified kernels by distributors.

Vanilla? εγω δεν νομιζω να χω Vanilla. Γιατι αυτο? Kατεβασα τους drivers απο το alsa-project.org

Αρκετα το κουρασα. Αυτα.

Συνδέστε για να σχολιάσετε
Κοινοποίηση σε άλλες σελίδες

Αρχειοθετημένο

Αυτό το θέμα έχει αρχειοθετηθεί και είναι κλειστό για περαιτέρω απαντήσεις.

  • Δημιουργία νέου...