diff options
author | Thierry Reding <treding@nvidia.com> | 2013-09-24 13:22:17 +0200 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2013-10-31 09:20:05 +0100 |
commit | 386a2a71e2abde2d9fd529f8dc5f743102744100 (patch) | |
tree | db5bc9637e8d65ee83773e1d79a08aa6c5511abc /drivers/gpu/host1x/host1x_client.h | |
parent | drm/tegra: Cleanup tegra_dc structure (diff) | |
download | linux-386a2a71e2abde2d9fd529f8dc5f743102744100.tar.xz linux-386a2a71e2abde2d9fd529f8dc5f743102744100.zip |
drm/tegra: Rename host1x_drm structure to tegra_drm
The host1x and Tegra DRM drivers are currently tightly coupled. Renaming
the structure marks the boundary more clearly.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/gpu/host1x/host1x_client.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/host1x/host1x_client.h b/drivers/gpu/host1x/host1x_client.h index 9b85f10f4a44..6a0bd0268042 100644 --- a/drivers/gpu/host1x/host1x_client.h +++ b/drivers/gpu/host1x/host1x_client.h @@ -21,9 +21,9 @@ struct device; struct platform_device; #ifdef CONFIG_DRM_TEGRA -int host1x_drm_alloc(struct platform_device *pdev); +int tegra_drm_alloc(struct platform_device *pdev); #else -static inline int host1x_drm_alloc(struct platform_device *pdev) +static inline int tegra_drm_alloc(struct platform_device *pdev) { return 0; } |