layla24.c (5a84d159061d914c8dd4aa372ac6e9529c2be453) layla24.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 *

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

63#include <sound/pcm_params.h>
64#include <sound/asoundef.h>
65#include <sound/initval.h>
66#include <sound/rawmidi.h>
67#include <asm/io.h>
68#include <asm/atomic.h>
69#include "echoaudio.h"
70
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 *

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

63#include <sound/pcm_params.h>
64#include <sound/asoundef.h>
65#include <sound/initval.h>
66#include <sound/rawmidi.h>
67#include <asm/io.h>
68#include <asm/atomic.h>
69#include "echoaudio.h"
70
71MODULE_FIRMWARE("ea/loader_dsp.fw");
72MODULE_FIRMWARE("ea/layla24_dsp.fw");
73MODULE_FIRMWARE("ea/layla24_1_asic.fw");
74MODULE_FIRMWARE("ea/layla24_2A_asic.fw");
75MODULE_FIRMWARE("ea/layla24_2S_asic.fw");
76
71#define FW_361_LOADER 0
72#define FW_LAYLA24_DSP 1
73#define FW_LAYLA24_1_ASIC 2
74#define FW_LAYLA24_2A_ASIC 3
75#define FW_LAYLA24_2S_ASIC 4
76
77static const struct firmware card_fw[] = {
78 {0, "loader_dsp.fw"},

--- 44 unchanged lines hidden ---
77#define FW_361_LOADER 0
78#define FW_LAYLA24_DSP 1
79#define FW_LAYLA24_1_ASIC 2
80#define FW_LAYLA24_2A_ASIC 3
81#define FW_LAYLA24_2S_ASIC 4
82
83static const struct firmware card_fw[] = {
84 {0, "loader_dsp.fw"},

--- 44 unchanged lines hidden ---