From 6383900718aaee2ee292679601ba22050e2c82b0 Mon Sep 17 00:00:00 2001 From: James Ward Date: Tue, 11 Jul 2023 01:16:49 -0400 Subject: [PATCH] fix: add missing semicolons --- drm_iface.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drm_iface.c b/drm_iface.c index d546b57..9f08d3e 100644 --- a/drm_iface.c +++ b/drm_iface.c @@ -635,10 +635,10 @@ void drm_remove(struct spi_device *spi) if (panel->gpio_scs) { - devm_gpiod_put(dev, panel->gpio_scs) + devm_gpiod_put(dev, panel->gpio_scs); } - devm_gpiod_put(dev, panel->gpio_disp) - devm_gpiod_put(dev, panel->gpio_vcom) + devm_gpiod_put(dev, panel->gpio_disp); + devm_gpiod_put(dev, panel->gpio_vcom); drm_dev_unplug(drm);