Commit 99503469 authored by Tom Rix's avatar Tom Rix Committed by Mark Brown

ASoC: TSCS454: remove unneeded semicolon

A semicolon is not needed after a switch statement.
Signed-off-by: default avatarTom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201101171742.2304458-1-trix@redhat.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent f4bf1f4d
......@@ -177,7 +177,7 @@ static bool tscs454_volatile(struct device *dev, unsigned int reg)
return true;
default:
return false;
};
}
}
static bool tscs454_writable(struct device *dev, unsigned int reg)
......@@ -197,7 +197,7 @@ static bool tscs454_writable(struct device *dev, unsigned int reg)
return false;
default:
return true;
};
}
}
static bool tscs454_readable(struct device *dev, unsigned int reg)
......@@ -217,7 +217,7 @@ static bool tscs454_readable(struct device *dev, unsigned int reg)
return false;
default:
return true;
};
}
}
static bool tscs454_precious(struct device *dev, unsigned int reg)
......@@ -246,7 +246,7 @@ static bool tscs454_precious(struct device *dev, unsigned int reg)
return true;
default:
return false;
};
}
}
static const struct regmap_range_cfg tscs454_regmap_range_cfg = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment