aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd
diff options
context:
space:
mode:
authorRichard Fitzgerald <rf@opensource.cirrus.com>2018-12-14 14:39:14 +0000
committerLee Jones <lee.jones@linaro.org>2019-01-03 08:32:42 +0000
commit4bcb83e055033592e8672a8deb7b209eed936e11 (patch)
treef6c0d19c6854ce60f1f1b4e818fa4c0d0644e7d2 /drivers/mfd
parentmfd: rave-sp: Fix typo in rave_sp_checksum comment (diff)
downloadlinux-dev-4bcb83e055033592e8672a8deb7b209eed936e11.tar.xz
linux-dev-4bcb83e055033592e8672a8deb7b209eed936e11.zip
mfd: madera: Remove spurious semicolon in while loop
Coccinelle warning of a spurious semicolon on the closing brace of a while loop. Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r--drivers/mfd/madera-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/madera-core.c b/drivers/mfd/madera-core.c
index 5b58a8aea902..2a77988d0462 100644
--- a/drivers/mfd/madera-core.c
+++ b/drivers/mfd/madera-core.c
@@ -156,7 +156,7 @@ static int madera_wait_for_boot(struct madera *madera)
usleep_range(MADERA_BOOT_POLL_INTERVAL_USEC / 2,
MADERA_BOOT_POLL_INTERVAL_USEC);
regmap_read(madera->regmap, MADERA_IRQ1_RAW_STATUS_1, &val);
- };
+ }
if (!(val & MADERA_BOOT_DONE_STS1)) {
dev_err(madera->dev, "Polling BOOT_DONE_STS timed out\n");