]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
ASoC: tas2770: clean up an indentation issue
authorColin Ian King <colin.king@canonical.com>
Tue, 12 Nov 2019 19:02:18 +0000 (19:02 +0000)
committerMark Brown <broonie@kernel.org>
Fri, 15 Nov 2019 12:01:43 +0000 (12:01 +0000)
There is a block that is indented too deeply, remove
the extraneous tabs.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20191112190218.282337-1-colin.king@canonical.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/tas2770.c

index ad76f22fcfac00cc495c291e90783a5eeb854c8c..54c8135fe43c17ba068dd8efc017eabe1a296ee1 100644 (file)
@@ -761,12 +761,12 @@ static int tas2770_i2c_probe(struct i2c_client *client,
        tas2770->reset_gpio = devm_gpiod_get_optional(tas2770->dev,
                                                          "reset-gpio",
                                                      GPIOD_OUT_HIGH);
-               if (IS_ERR(tas2770->reset_gpio)) {
-                       if (PTR_ERR(tas2770->reset_gpio) == -EPROBE_DEFER) {
-                               tas2770->reset_gpio = NULL;
-                               return -EPROBE_DEFER;
-                       }
+       if (IS_ERR(tas2770->reset_gpio)) {
+               if (PTR_ERR(tas2770->reset_gpio) == -EPROBE_DEFER) {
+                       tas2770->reset_gpio = NULL;
+                       return -EPROBE_DEFER;
                }
+       }
 
        tas2770->channel_size = 0;
        tas2770->slot_width = 0;