drm/tegra: tegra_fb -> drm_framebuffer

Since tegra_fb is now the same as drm_framebuffer, we can just replace
the type completely.

Signed-off-by: Daniel Stone <daniels@collabora.com>
Cc: Thierry Reding <thierry.reding@gmail.com>
Cc: linux-tegra@vger.kernel.org
Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
Daniel Stone
2018-03-30 15:11:27 +01:00
committed by Thierry Reding
parent 0bc6af006f
commit dbc33c7d65
2 changed files with 15 additions and 25 deletions

View File

@@ -29,14 +29,10 @@
struct reset_control;
struct tegra_fb {
struct drm_framebuffer base;
};
#ifdef CONFIG_DRM_FBDEV_EMULATION
struct tegra_fbdev {
struct drm_fb_helper base;
struct tegra_fb *fb;
struct drm_framebuffer *fb;
};
#endif