From 41df18cb2b8d13a1e0c7eee10993255f4aa2e29b Mon Sep 17 00:00:00 2001 From: James Ward Date: Tue, 11 Jul 2023 03:04:42 -0400 Subject: [PATCH] chore: fix whitespace issues (spaces instead of tabs) --- drm_iface.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drm_iface.c b/drm_iface.c index 7e96f96..7ebaeef 100644 --- a/drm_iface.c +++ b/drm_iface.c @@ -508,12 +508,12 @@ int drm_probe(struct spi_device *spi) g_panel = panel; // Initialize GPIO - panel->gpio_disp = devm_gpiod_get(dev, "disp", GPIOD_OUT_HIGH); - if (IS_ERR(panel->gpio_disp)) + panel->gpio_disp = devm_gpiod_get(dev, "disp", GPIOD_OUT_HIGH); + if (IS_ERR(panel->gpio_disp)) return dev_err_probe(dev, PTR_ERR(panel->gpio_disp), "Failed to get GPIO 'disp'\n"); - panel->gpio_vcom = devm_gpiod_get(dev, "vcom", GPIOD_OUT_LOW); - if (IS_ERR(panel->gpio_vcom)) + panel->gpio_vcom = devm_gpiod_get(dev, "vcom", GPIOD_OUT_LOW); + if (IS_ERR(panel->gpio_vcom)) return dev_err_probe(dev, PTR_ERR(panel->gpio_vcom), "Failed to get GPIO 'vcom'\n"); // Initalize DRM mode