• M
    ALSA: hda/ca0132: Remove double parentheses · a16fbb85
    Matthias Kaehlcke 提交于
    The extra pairs of parantheses are not needed and causes clang to
    generate warnings like this:
    
    sound/pci/hda/patch_ca0132.c:1171:14: error: equality comparison with extraneous parentheses [-Werror,-Wparentheses-equality]
            if ((buffer == NULL))
                 ~~~~~~~^~~~~~~
    sound/pci/hda/patch_ca0132.c:1171:14: note: remove extraneous parentheses around the comparison to silence this warning
            if ((buffer == NULL))
                ~       ^      ~
    sound/pci/hda/patch_ca0132.c:1171:14: note: use '=' to turn this equality comparison into an assignment
            if ((buffer == NULL))
    Signed-off-by: NMatthias Kaehlcke <mka@chromium.org>
    Signed-off-by: NTakashi Iwai <tiwai@suse.de>
    a16fbb85
patch_ca0132.c 124.6 KB