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: Matthias Kaehlcke <mka@chromium.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
        int status = 0;
        unsigned int count;
 
-       if ((buffer == NULL))
+       if (buffer == NULL)
                return -EINVAL;
 
        count = 0;
        unsigned int skip_count;
        unsigned int dummy;
 
-       if ((buffer == NULL))
+       if (buffer == NULL)
                return -1;
 
        count = 0;