diff mbox

fix format type mismatch in sound/pci/hda/patch_sigmatel.c

Message ID 1400606364-21649-1-git-send-email-toralf.foerster@gmx.de (mailing list archive)
State Accepted
Commit e7fc496066ac3cc473f4309d1a1cd32fc2fc08ab
Delegated to: Takashi Iwai
Headers show

Commit Message

Toralf Förster May 20, 2014, 5:19 p.m. UTC
Signed-off-by: Toralf Förster <toralf.foerster@gmx.de>
---
 sound/pci/hda/patch_sigmatel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Takashi Iwai May 21, 2014, 9:12 a.m. UTC | #1
At Tue, 20 May 2014 19:19:24 +0200,
Toralf Förster wrote:
> 
> Signed-off-by: Toralf Förster <toralf.foerster@gmx.de>

Thanks, applied.


Takashi

> ---
>  sound/pci/hda/patch_sigmatel.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c
> index 75515b4..7f40a15 100644
> --- a/sound/pci/hda/patch_sigmatel.c
> +++ b/sound/pci/hda/patch_sigmatel.c
> @@ -795,7 +795,7 @@ static int find_mute_led_cfg(struct hda_codec *codec, int default_polarity)
>  	}
>  
>  	while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
> -		if (sscanf(dev->name, "HP_Mute_LED_%d_%x",
> +		if (sscanf(dev->name, "HP_Mute_LED_%u_%x",
>  			   &spec->gpio_led_polarity,
>  			   &spec->gpio_led) == 2) {
>  			unsigned int max_gpio;
> @@ -808,7 +808,7 @@ static int find_mute_led_cfg(struct hda_codec *codec, int default_polarity)
>  				spec->vref_mute_led_nid = spec->gpio_led;
>  			return 1;
>  		}
> -		if (sscanf(dev->name, "HP_Mute_LED_%d",
> +		if (sscanf(dev->name, "HP_Mute_LED_%u",
>  			   &spec->gpio_led_polarity) == 1) {
>  			set_hp_led_gpio(codec);
>  			return 1;
> -- 
> 1.9.3
>
diff mbox

Patch

diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c
index 75515b4..7f40a15 100644
--- a/sound/pci/hda/patch_sigmatel.c
+++ b/sound/pci/hda/patch_sigmatel.c
@@ -795,7 +795,7 @@  static int find_mute_led_cfg(struct hda_codec *codec, int default_polarity)
 	}
 
 	while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
-		if (sscanf(dev->name, "HP_Mute_LED_%d_%x",
+		if (sscanf(dev->name, "HP_Mute_LED_%u_%x",
 			   &spec->gpio_led_polarity,
 			   &spec->gpio_led) == 2) {
 			unsigned int max_gpio;
@@ -808,7 +808,7 @@  static int find_mute_led_cfg(struct hda_codec *codec, int default_polarity)
 				spec->vref_mute_led_nid = spec->gpio_led;
 			return 1;
 		}
-		if (sscanf(dev->name, "HP_Mute_LED_%d",
+		if (sscanf(dev->name, "HP_Mute_LED_%u",
 			   &spec->gpio_led_polarity) == 1) {
 			set_hp_led_gpio(codec);
 			return 1;