mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-11-02 09:01:48 -05:00
hdspmixer: Add support for RME RPM
This patch adds support for the RME RPM devices. It's mostly based on Florian Faber's previous patch against hdspmixer 1.0.23, forwarded-ported to the current hdspmixer code. Signed-off-by: Adrian Knoth <adi@drcomp.erfurt.thur.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
cb40769c93
commit
53bcd9d16c
8 changed files with 63 additions and 0 deletions
|
|
@ -65,6 +65,10 @@ int main(int argc, char **argv)
|
|||
printf("Digiface found!\n");
|
||||
hdsp_cards[cards] = new HDSPMixerCard(Digiface, card, shortname);
|
||||
cards++;
|
||||
} else if (!strncmp(name, "RME Hammerfall DSP + RPM", 24)) {
|
||||
printf("RPM found!\n");
|
||||
hdsp_cards[cards] = new HDSPMixerCard(RPM, card, shortname);
|
||||
cards++;
|
||||
} else if (!strncmp(name, "RME Hammerfall HDSP 9652", 24)) {
|
||||
printf("HDSP 9652 found!\n");
|
||||
hdsp_cards[cards] = new HDSPMixerCard(H9652, card, shortname);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue