summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/tegra/gem.c
diff options
context:
space:
mode:
authorThierry Reding2013-12-12 10:10:46 +0100
committerThierry Reding2013-12-19 09:29:54 +0100
commit425c0fdc427440fdaf039a649eab713d932fa368 (patch)
treecde840a56e4850e47ebb03b19751c144bd805de6 /drivers/gpu/drm/tegra/gem.c
parentdrm/tegra: Remove spurious blank line (diff)
downloadkernel-qcow2-linux-425c0fdc427440fdaf039a649eab713d932fa368.tar.gz
kernel-qcow2-linux-425c0fdc427440fdaf039a649eab713d932fa368.tar.xz
kernel-qcow2-linux-425c0fdc427440fdaf039a649eab713d932fa368.zip
drm/tegra: Do not export tegra_bo_ops
These buffer object operations are never used outside of the GEM implementation so there is no use in exporting them. Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra/gem.c')
-rw-r--r--drivers/gpu/drm/tegra/gem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tegra/gem.c b/drivers/gpu/drm/tegra/gem.c
index de0a9e6207e2..7741e3355c98 100644
--- a/drivers/gpu/drm/tegra/gem.c
+++ b/drivers/gpu/drm/tegra/gem.c
@@ -83,7 +83,7 @@ static struct host1x_bo *tegra_bo_get(struct host1x_bo *bo)
return bo;
}
-const struct host1x_bo_ops tegra_bo_ops = {
+static const struct host1x_bo_ops tegra_bo_ops = {
.get = tegra_bo_get,
.put = tegra_bo_put,
.pin = tegra_bo_pin,