indigoio.c (5a84d159061d914c8dd4aa372ac6e9529c2be453) indigoio.c (7e0af29d6f3964bec3d72c6caeb87a603e660fdf)
1/*
2 * ALSA driver for Echoaudio soundcards.
3 * Copyright (C) 2003-2004 Giuliano Pochini <pochini@shiny.it>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *

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

54#include <sound/pcm.h>
55#include <sound/pcm_params.h>
56#include <sound/asoundef.h>
57#include <sound/initval.h>
58#include <asm/io.h>
59#include <asm/atomic.h>
60#include "echoaudio.h"
61
1/*
2 * ALSA driver for Echoaudio soundcards.
3 * Copyright (C) 2003-2004 Giuliano Pochini <pochini@shiny.it>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *

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

54#include <sound/pcm.h>
55#include <sound/pcm_params.h>
56#include <sound/asoundef.h>
57#include <sound/initval.h>
58#include <asm/io.h>
59#include <asm/atomic.h>
60#include "echoaudio.h"
61
62MODULE_FIRMWARE("ea/loader_dsp.fw");
63MODULE_FIRMWARE("ea/indigo_io_dsp.fw");
64
62#define FW_361_LOADER 0
63#define FW_INDIGO_IO_DSP 1
64
65static const struct firmware card_fw[] = {
66 {0, "loader_dsp.fw"},
67 {0, "indigo_io_dsp.fw"}
68};
69

--- 37 unchanged lines hidden ---
65#define FW_361_LOADER 0
66#define FW_INDIGO_IO_DSP 1
67
68static const struct firmware card_fw[] = {
69 {0, "loader_dsp.fw"},
70 {0, "indigo_io_dsp.fw"}
71};
72

--- 37 unchanged lines hidden ---