[PATCH 11/20] drm/bridge: tc358775: reformat weird indentation

From: Michael Walle
Date: Mon May 06 2024 - 09:39:03 EST


Reformat the indentation of the mipi_dsi_device_info initialization.
While at it, move it to the top of the function.

Signed-off-by: Michael Walle <mwalle@xxxxxxxxxx>
---
drivers/gpu/drm/bridge/tc358775.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/bridge/tc358775.c b/drivers/gpu/drm/bridge/tc358775.c
index be2175571b99..e6d1f0c686ac 100644
--- a/drivers/gpu/drm/bridge/tc358775.c
+++ b/drivers/gpu/drm/bridge/tc358775.c
@@ -557,14 +557,15 @@ static const struct drm_bridge_funcs tc_bridge_funcs = {

static int tc_attach_host(struct tc_data *tc)
{
+ const struct mipi_dsi_device_info info = {
+ .type = "tc358775",
+ .channel = 0,
+ .node = NULL,
+ };
struct device *dev = tc->dev;
struct mipi_dsi_host *host;
struct mipi_dsi_device *dsi;
int ret;
- const struct mipi_dsi_device_info info = { .type = "tc358775",
- .channel = 0,
- .node = NULL,
- };

host = of_find_mipi_dsi_host_by_node(tc->host_node);
if (!host)

--
2.39.2