diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-10-05 10:36:45 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-10-08 09:46:16 +0000 |
commit | 88607a4b1002ed6acc7f316f274feea2fd861095 (patch) | |
tree | e004c85f36109da78872b88875d4f0ea1c30aaff /src/soc/nvidia/tegra124/dp.c | |
parent | d9169f826a3c19a7380a7d73c7126e52eb62e77d (diff) |
src: Use tabs for indentation
Change-Id: I6b40aaf5af5d114bbb0cd227dfd50b0ee19eebba
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/28934
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/nvidia/tegra124/dp.c')
-rw-r--r-- | src/soc/nvidia/tegra124/dp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/soc/nvidia/tegra124/dp.c b/src/soc/nvidia/tegra124/dp.c index a9b8d7da97..7fae4e9a45 100644 --- a/src/soc/nvidia/tegra124/dp.c +++ b/src/soc/nvidia/tegra124/dp.c @@ -1362,10 +1362,10 @@ void dp_init(void *_config) struct tegra_dc *dc = config->dc_data; struct tegra_dc_dp_data *dp = &dp_data; - // set up links among config, dc, dp and sor - dp->dc = dc; - dc->out = dp; - dp->sor.dc = dc; + // set up links among config, dc, dp and sor + dp->dc = dc; + dc->out = dp; + dp->sor.dc = dc; dp->sor.power_is_up = 0; dp->sor.base = (void *)TEGRA_ARM_SOR; @@ -1427,7 +1427,7 @@ void dp_enable(void *_dp) if (tegra_dc_dp_init_max_link_cfg(config, dp, &dp->link_cfg)) { printk(BIOS_ERR, "dp: failed to init link configuration\n"); goto error_enable; - } + } tegra_dc_sor_enable_dp(&dp->sor); |