aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio
diff options
context:
space:
mode:
authorZheng Yongjun <zhengyongjun3@huawei.com>2021-01-08 17:23:55 +0800
committerBartosz Golaszewski <bgolaszewski@baylibre.com>2021-02-15 11:43:29 +0100
commit7de2e5fc51eea412abb42193181fc0cc3ecc2851 (patch)
tree4472905799e2c06c3182ba5ab0291d496d4345ae /drivers/gpio
parentgpio: max77620: convert comma to semicolon (diff)
downloadlinux-dev-7de2e5fc51eea412abb42193181fc0cc3ecc2851.tar.xz
linux-dev-7de2e5fc51eea412abb42193181fc0cc3ecc2851.zip
gpio: tegra186: 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-tegra186.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-tegra186.c b/drivers/gpio/gpio-tegra186.c
index 286e0b1f46e4..1bd9e44df718 100644
--- a/drivers/gpio/gpio-tegra186.c
+++ b/drivers/gpio/gpio-tegra186.c
@@ -657,7 +657,7 @@ static int tegra186_gpio_probe(struct platform_device *pdev)
gpio->gpio.get_direction = tegra186_gpio_get_direction;
gpio->gpio.direction_input = tegra186_gpio_direction_input;
gpio->gpio.direction_output = tegra186_gpio_direction_output;
- gpio->gpio.get = tegra186_gpio_get,
+ gpio->gpio.get = tegra186_gpio_get;
gpio->gpio.set = tegra186_gpio_set;
gpio->gpio.set_config = tegra186_gpio_set_config;
gpio->gpio.add_pin_ranges = tegra186_gpio_add_pin_ranges;