diff options
author | Tow Wang <toww@nvidia.com> | 2016-08-17 21:56:49 -0400 |
---|---|---|
committer | mobile promotions <svcmobile_promotions@nvidia.com> | 2016-08-22 20:04:12 -0400 |
commit | b051f7aa76ac2872ac5248b90c6ac13736cf0a36 (patch) | |
tree | 2ebb7a86b342c4dc6c606a280da1ebad272e64aa /drivers/video/tegra/dc/dsi.c | |
parent | 98e99d5aa77727fba6d4eae5c1912ee201218a43 (diff) |
video: tegra: fpdlink: move to dc folder
Move the DS90UB947 driver to the "dc" folder,
since it depends on the bridge interface required by dsi.c.
Minor fixes included.
JIRA: EVLR-489
Change-Id: Id6b8662b2dbf28cc5fb8c824d2cbc6edffcf6711
Signed-off-by: Tow Wang <toww@nvidia.com>
Reviewed-on: http://git-master/r/1204059
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/video/tegra/dc/dsi.c')
-rw-r--r-- | drivers/video/tegra/dc/dsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/tegra/dc/dsi.c b/drivers/video/tegra/dc/dsi.c index a2c815ec3..1b1f15df6 100644 --- a/drivers/video/tegra/dc/dsi.c +++ b/drivers/video/tegra/dc/dsi.c | |||
@@ -5880,13 +5880,13 @@ bool tegra_dc_dsi_detect(struct tegra_dc *dc) | |||
5880 | { | 5880 | { |
5881 | bool result = true; | 5881 | bool result = true; |
5882 | 5882 | ||
5883 | #if defined(CONFIG_DS90UB947) | 5883 | #if defined(CONFIG_TEGRA_LVDS2FPDL_DS90UB947) |
5884 | /* DrivePX2: DSI->sn65dsi85(LVDS)->ds90ub947(FPDLink) */ | 5884 | /* DrivePX2: DSI->sn65dsi85(LVDS)->ds90ub947(FPDLink) */ |
5885 | struct tegra_dc_dsi_data *dsi = tegra_dc_get_outdata(dc); | 5885 | struct tegra_dc_dsi_data *dsi = tegra_dc_get_outdata(dc); |
5886 | 5886 | ||
5887 | if (dsi->info.dsi2lvds_bridge_enable) | 5887 | if (dsi->info.dsi2lvds_bridge_enable) |
5888 | result = ds90ub947_lvds2fpdlink3_detect(dc); | 5888 | result = ds90ub947_lvds2fpdlink3_detect(dc); |
5889 | #endif /*defined(CONFIG_DS90UB947)*/ | 5889 | #endif /*defined(CONFIG_TEGRA_LVDS2FPDL_DS90UB947)*/ |
5890 | return result; | 5890 | return result; |
5891 | } | 5891 | } |
5892 | 5892 | ||