diff options
author | Jason Yan <[email protected]> | 2020-09-10 22:05:46 +0800 |
---|---|---|
committer | Maxime Ripard <[email protected]> | 2020-09-11 17:02:39 +0200 |
commit | 1893a2d5264e2004722afecfcea1859f38b3ed82 (patch) | |
tree | 4b815a3b0e87ff2d40adf81b3e029a0cb07e5c70 | |
parent | 9123e3a74ec7b934a4a099e98af6a61c2f80bbf5 (diff) |
soc: sunxi: sram: remove unneeded semicolon
Eliminate the following coccicheck warning:
drivers/soc/sunxi/sunxi_sram.c:197:2-3: Unneeded semicolon
Reported-by: Hulk Robot <[email protected]>
Signed-off-by: Jason Yan <[email protected]>
Signed-off-by: Maxime Ripard <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | drivers/soc/sunxi/sunxi_sram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/sunxi/sunxi_sram.c b/drivers/soc/sunxi/sunxi_sram.c index 1b0d50f36349..d4c7bd59429e 100644 --- a/drivers/soc/sunxi/sunxi_sram.c +++ b/drivers/soc/sunxi/sunxi_sram.c @@ -194,7 +194,7 @@ static const struct sunxi_sram_data *sunxi_sram_of_parse(struct device_node *nod if (!data) { ret = -EINVAL; goto err; - }; + } for (func = data->func; func->func; func++) { if (val == func->val) { |