From 15aaaba184a04a436770153b5319a3fd406d2ce6 Mon Sep 17 00:00:00 2001 From: Adrian Knoth Date: Fri, 29 Jul 2011 17:57:30 +0200 Subject: [PATCH] hdspmixer: Fix temporary RPM constant RPM in hdsp.h's HDSP_IO_Type is 4, not 5. This patch isn't exactly necessary here, because the constant is only used internally, but to avoid confusion if somebody ever reads the code, let's use the correct value. Note that we'll drop it after the next alsa-lib release. Signed-off-by: Adrian Knoth Signed-off-by: Takashi Iwai --- hdspmixer/src/HDSPMixerCard.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hdspmixer/src/HDSPMixerCard.h b/hdspmixer/src/HDSPMixerCard.h index 656702b..faaeefa 100644 --- a/hdspmixer/src/HDSPMixerCard.h +++ b/hdspmixer/src/HDSPMixerCard.h @@ -34,7 +34,7 @@ /* temporary workaround until hdsp.h (HDSP_IO_Type gets fixed */ #ifndef RPM -# define RPM 5 +# define RPM 4 #endif class HDSPMixerWindow; -- 2.47.1