[PATCH v2] sound: seq: fix typo in system_2p_ev_to_ump_midi1()

Minjie Du posted 1 patch 2 years, 7 months ago
sound/core/seq/seq_ump_convert.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH v2] sound: seq: fix typo in system_2p_ev_to_ump_midi1()
Posted by Minjie Du 2 years, 7 months ago
Fix data->system.parm2 typo.

Signed-off-by: Minjie Du <duminjie@vivo.com>
---
 sound/core/seq/seq_ump_convert.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/core/seq/seq_ump_convert.c b/sound/core/seq/seq_ump_convert.c
index eb1d86ff6..7cc84e137 100644
--- a/sound/core/seq/seq_ump_convert.c
+++ b/sound/core/seq/seq_ump_convert.c
@@ -714,7 +714,7 @@ static int system_2p_ev_to_ump_midi1(const struct snd_seq_event *event,
 {
 	data->system.status = status;
 	data->system.parm1 = (event->data.control.value >> 7) & 0x7f;
-	data->system.parm1 = event->data.control.value & 0x7f;
+	data->system.parm2 = event->data.control.value & 0x7f;
 	return 1;
 }
 
-- 
2.39.0
Re: [PATCH v2] sound: seq: fix typo in system_2p_ev_to_ump_midi1()
Posted by Takashi Iwai 2 years, 7 months ago
On Wed, 05 Jul 2023 11:35:45 +0200,
Minjie Du wrote:
> 
> Fix data->system.parm2 typo.
> 
> Signed-off-by: Minjie Du <duminjie@vivo.com>

Thanks, applied now.

At the next time, though, it'd be appreciated if you give the
corresponding Fixes tag, too.  I added manually for now.


Takashi