[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20201101160037.2295512-1-trix@redhat.com>
Date: Sun, 1 Nov 2020 08:00:37 -0800
From: trix@...hat.com
To: lgirdwood@...il.com, broonie@...nel.org, perex@...ex.cz,
tiwai@...e.com, nsaenzjulienne@...e.de, f.fainelli@...il.com,
rjui@...adcom.com, sbranden@...adcom.com,
ranjani.sridharan@...ux.intel.com, sw0312.kim@...sung.com,
kuninori.morimoto.gx@...esas.com
Cc: bcm-kernel-feedback-list@...adcom.com, alsa-devel@...a-project.org,
linux-rpi-kernel@...ts.infradead.org,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
Tom Rix <trix@...hat.com>
Subject: [PATCH] ASoC: bcm2835-i2s: remove unneeded semicolon
From: Tom Rix <trix@...hat.com>
A semicolon is not needed after a switch statement.
Signed-off-by: Tom Rix <trix@...hat.com>
---
sound/soc/bcm/bcm2835-i2s.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sound/soc/bcm/bcm2835-i2s.c b/sound/soc/bcm/bcm2835-i2s.c
index dc34fe1559c6..c2f7631e8705 100644
--- a/sound/soc/bcm/bcm2835-i2s.c
+++ b/sound/soc/bcm/bcm2835-i2s.c
@@ -797,7 +797,7 @@ static bool bcm2835_i2s_volatile_reg(struct device *dev, unsigned int reg)
return true;
default:
return false;
- };
+ }
}
static bool bcm2835_i2s_precious_reg(struct device *dev, unsigned int reg)
@@ -807,7 +807,7 @@ static bool bcm2835_i2s_precious_reg(struct device *dev, unsigned int reg)
return true;
default:
return false;
- };
+ }
}
static const struct regmap_config bcm2835_regmap_config = {
--
2.18.1
Powered by blists - more mailing lists