ALSA: hda - Make clear built-in driver optimization
authorTakashi Iwai <tiwai@suse.de>
Fri, 24 Aug 2012 16:40:10 +0000 (18:40 +0200)
committerTakashi Iwai <tiwai@suse.de>
Tue, 28 Aug 2012 16:12:09 +0000 (09:12 -0700)
Use unsigned int to make clear that the codes required only for
modules will be reduced by the compiler optimization.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/hda_codec.c

index 4a2f35c..5f9da87 100644 (file)
@@ -808,7 +808,7 @@ find_codec_preset(struct hda_codec *codec)
 {
        struct hda_codec_preset_list *tbl;
        const struct hda_codec_preset *preset;
-       int mod_requested = 0;
+       unsigned int mod_requested = 0;
 
        if (is_generic_config(codec))
                return NULL; /* use the generic parser */