diff options
Diffstat (limited to 'sound/pci/echoaudio/indigo_dsp.c')
| -rw-r--r-- | sound/pci/echoaudio/indigo_dsp.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sound/pci/echoaudio/indigo_dsp.c b/sound/pci/echoaudio/indigo_dsp.c index 0b2cd9c86277..5e85f14fe5a8 100644 --- a/sound/pci/echoaudio/indigo_dsp.c +++ b/sound/pci/echoaudio/indigo_dsp.c | |||
| @@ -50,7 +50,7 @@ static int init_hw(struct echoaudio *chip, u16 device_id, u16 subdevice_id) | |||
| 50 | chip->device_id = device_id; | 50 | chip->device_id = device_id; |
| 51 | chip->subdevice_id = subdevice_id; | 51 | chip->subdevice_id = subdevice_id; |
| 52 | chip->bad_board = TRUE; | 52 | chip->bad_board = TRUE; |
| 53 | chip->dsp_code_to_load = &card_fw[FW_INDIGO_DSP]; | 53 | chip->dsp_code_to_load = FW_INDIGO_DSP; |
| 54 | /* Since this card has no ASIC, mark it as loaded so everything | 54 | /* Since this card has no ASIC, mark it as loaded so everything |
| 55 | works OK */ | 55 | works OK */ |
| 56 | chip->asic_loaded = TRUE; | 56 | chip->asic_loaded = TRUE; |
| @@ -60,15 +60,19 @@ static int init_hw(struct echoaudio *chip, u16 device_id, u16 subdevice_id) | |||
| 60 | return err; | 60 | return err; |
| 61 | chip->bad_board = FALSE; | 61 | chip->bad_board = FALSE; |
| 62 | 62 | ||
| 63 | if ((err = init_line_levels(chip)) < 0) | ||
| 64 | return err; | ||
| 65 | |||
| 66 | DE_INIT(("init_hw done\n")); | 63 | DE_INIT(("init_hw done\n")); |
| 67 | return err; | 64 | return err; |
| 68 | } | 65 | } |
| 69 | 66 | ||
| 70 | 67 | ||
| 71 | 68 | ||
| 69 | static int set_mixer_defaults(struct echoaudio *chip) | ||
| 70 | { | ||
| 71 | return init_line_levels(chip); | ||
| 72 | } | ||
| 73 | |||
| 74 | |||
| 75 | |||
| 72 | static u32 detect_input_clocks(const struct echoaudio *chip) | 76 | static u32 detect_input_clocks(const struct echoaudio *chip) |
| 73 | { | 77 | { |
| 74 | return ECHO_CLOCK_BIT_INTERNAL; | 78 | return ECHO_CLOCK_BIT_INTERNAL; |
