aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/pci/rme9652/hdspm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/rme9652/hdspm.c b/sound/pci/rme9652/hdspm.c
index 9a19ae6a64d9..38c931c480d9 100644
--- a/sound/pci/rme9652/hdspm.c
+++ b/sound/pci/rme9652/hdspm.c
@@ -1028,9 +1028,9 @@ static inline void snd_hdspm_midi_write_byte (struct hdspm *hdspm, int id,
1028{ 1028{
1029 /* the hardware already does the relevant bit-mask with 0xff */ 1029 /* the hardware already does the relevant bit-mask with 0xff */
1030 if (id) 1030 if (id)
1031 return hdspm_write(hdspm, HDSPM_midiDataOut1, val); 1031 hdspm_write(hdspm, HDSPM_midiDataOut1, val);
1032 else 1032 else
1033 return hdspm_write(hdspm, HDSPM_midiDataOut0, val); 1033 hdspm_write(hdspm, HDSPM_midiDataOut0, val);
1034} 1034}
1035 1035
1036static inline int snd_hdspm_midi_input_available (struct hdspm *hdspm, int id) 1036static inline int snd_hdspm_midi_input_available (struct hdspm *hdspm, int id)