chore: fix whitespace issues (spaces instead of tabs)

This commit is contained in:
James Ward 2023-07-11 03:04:42 -04:00
parent d90237bf9a
commit 41df18cb2b
No known key found for this signature in database
GPG Key ID: F53FE2DEDD7BBD79

View File

@ -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