2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2025-01-02 10:43:57 +08:00

ASoC: TSCS454: remove unneeded semicolon

A semicolon is not needed after a switch statement.

Signed-off-by: Tom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201101171742.2304458-1-trix@redhat.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Tom Rix 2020-11-01 09:17:42 -08:00 committed by Mark Brown
parent f4bf1f4d13
commit 99503469bd
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0

View File

@ -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 = {