public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] thinkpad-acpi: fix return value of volume callbacks
@ 2010-02-22  9:45 Clemens Ladisch
  2010-02-23  3:12 ` Henrique de Moraes Holschuh
  0 siblings, 1 reply; 6+ messages in thread
From: Clemens Ladisch @ 2010-02-22  9:45 UTC (permalink / raw)
  To: Henrique de Moraes Holschuh, ibm-acpi-devel, linux-kernel

Fix up the volume status setting functions to return a non-zero value if
the control value has changed, so that the ALSA framework can correctly
generate control change notifications.

Signed-off-by: Clemens Ladisch <clemens@ladisch.de>

--- linux/drivers/platform/x86/thinkpad_acpi.c
+++ linux/drivers/platform/x86/thinkpad_acpi.c
@@ -6537,8 +6537,11 @@ static int volume_set_mute_ec(const bool
 	n = (mute) ? s | TP_EC_AUDIO_MUTESW_MSK :
 		     s & ~TP_EC_AUDIO_MUTESW_MSK;
 
-	if (n != s)
+	if (n != s) {
 		rc = volume_set_status_ec(n);
+		if (!rc)
+			rc = 1;
+	}
 
 unlock:
 	mutex_unlock(&volume_mutex);
@@ -6569,8 +6572,11 @@ static int volume_set_volume_ec(const u8
 
 	n = (s & ~TP_EC_AUDIO_LVL_MSK) | vol;
 
-	if (n != s)
+	if (n != s) {
 		rc = volume_set_status_ec(n);
+		if (!rc)
+			rc = 1;
+	}
 
 unlock:
 	mutex_unlock(&volume_mutex);

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-02-27  0:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-22  9:45 [PATCH] thinkpad-acpi: fix return value of volume callbacks Clemens Ladisch
2010-02-23  3:12 ` Henrique de Moraes Holschuh
2010-02-23  7:36   ` Clemens Ladisch
2010-02-26  0:30     ` Henrique de Moraes Holschuh
2010-02-26  7:38       ` Clemens Ladisch
2010-02-27  0:55         ` [ibm-acpi-devel] " Henrique de Moraes Holschuh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox