gina24.c (5a84d159061d914c8dd4aa372ac6e9529c2be453) | gina24.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 * --- 52 unchanged lines hidden (view full) --- 61#include <sound/pcm.h> 62#include <sound/pcm_params.h> 63#include <sound/asoundef.h> 64#include <sound/initval.h> 65#include <asm/io.h> 66#include <asm/atomic.h> 67#include "echoaudio.h" 68 | 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 * --- 52 unchanged lines hidden (view full) --- 61#include <sound/pcm.h> 62#include <sound/pcm_params.h> 63#include <sound/asoundef.h> 64#include <sound/initval.h> 65#include <asm/io.h> 66#include <asm/atomic.h> 67#include "echoaudio.h" 68 |
69MODULE_FIRMWARE("ea/loader_dsp.fw"); 70MODULE_FIRMWARE("ea/gina24_301_dsp.fw"); 71MODULE_FIRMWARE("ea/gina24_361_dsp.fw"); 72MODULE_FIRMWARE("ea/gina24_301_asic.fw"); 73MODULE_FIRMWARE("ea/gina24_361_asic.fw"); 74 |
|
69#define FW_361_LOADER 0 70#define FW_GINA24_301_DSP 1 71#define FW_GINA24_361_DSP 2 72#define FW_GINA24_301_ASIC 3 73#define FW_GINA24_361_ASIC 4 74 75static const struct firmware card_fw[] = { 76 {0, "loader_dsp.fw"}, --- 48 unchanged lines hidden --- | 75#define FW_361_LOADER 0 76#define FW_GINA24_301_DSP 1 77#define FW_GINA24_361_DSP 2 78#define FW_GINA24_301_ASIC 3 79#define FW_GINA24_361_ASIC 4 80 81static const struct firmware card_fw[] = { 82 {0, "loader_dsp.fw"}, --- 48 unchanged lines hidden --- |