diff options
author | Zheng Yongjun <zhengyongjun3@huawei.com> | 2021-01-08 10:23:45 +0100 |
---|---|---|
committer | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2021-02-15 11:43:29 +0100 |
commit | 10c942a157c5788f6659152f55741afc10e53048 (patch) | |
tree | dfa57c29e3edad820ce2de039c0d1ee150bb6652 /drivers/gpio | |
parent | gpio: tegra186: convert comma to semicolon (diff) | |
download | linux-10c942a157c5788f6659152f55741afc10e53048.tar.xz linux-10c942a157c5788f6659152f55741afc10e53048.zip |
gpio: vx855: convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-vx855.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-vx855.c b/drivers/gpio/gpio-vx855.c index 3bf397b8dfbc..69713fd5485b 100644 --- a/drivers/gpio/gpio-vx855.c +++ b/drivers/gpio/gpio-vx855.c @@ -216,7 +216,7 @@ static void vx855gpio_gpio_setup(struct vx855_gpio *vg) c->direction_output = vx855gpio_direction_output; c->get = vx855gpio_get; c->set = vx855gpio_set; - c->set_config = vx855gpio_set_config, + c->set_config = vx855gpio_set_config; c->dbg_show = NULL; c->base = 0; c->ngpio = NR_VX855_GP; |