]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: bcm2835-audio: Fix argument indentation
authorSimon Sandström <simon@nikanor.nu>
Tue, 7 Feb 2017 11:02:26 +0000 (12:02 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Feb 2017 12:14:30 +0000 (13:14 +0100)
Fixes checkpatch CHECK: "Alignment should match open parenthesis".

Signed-off-by: Simon Sandström <simon@nikanor.nu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm2835-audio/bcm2835.c

index f1ea1e08214268eb299cb39f4e6ecc27e9db028a..de315a1da6473ee7c5347c51280ca5b11e52d8b1 100644 (file)
@@ -49,8 +49,8 @@ static int snd_bcm2835_dev_free(struct snd_device *device)
  * (see "Management of Cards and Components")
  */
 static int snd_bcm2835_create(struct snd_card *card,
-       struct platform_device *pdev,
-       struct bcm2835_chip **rchip)
+                             struct platform_device *pdev,
+                             struct bcm2835_chip **rchip)
 {
        struct bcm2835_chip *chip;
        int err;
@@ -85,7 +85,7 @@ static int snd_bcm2835_alsa_probe_dt(struct platform_device *pdev)
        int err, i;
 
        err = of_property_read_u32(dev->of_node, "brcm,pwm-channels",
-               &numchans);
+                                  &numchans);
        if (err) {
                dev_err(dev, "Failed to get DT property 'brcm,pwm-channels'");
                return err;
@@ -94,7 +94,7 @@ static int snd_bcm2835_alsa_probe_dt(struct platform_device *pdev)
        if (numchans == 0 || numchans > MAX_SUBSTREAMS) {
                numchans = MAX_SUBSTREAMS;
                dev_warn(dev, "Illegal 'brcm,pwm-channels' value, will use %u\n",
-                       numchans);
+                        numchans);
        }
 
        err = snd_card_new(&pdev->dev, -1, NULL, THIS_MODULE, 0, &card);
@@ -194,7 +194,7 @@ static int snd_bcm2835_alsa_remove(struct platform_device *pdev)
 #ifdef CONFIG_PM
 
 static int snd_bcm2835_alsa_suspend(struct platform_device *pdev,
-       pm_message_t state)
+                                   pm_message_t state)
 {
        return 0;
 }