diff options
author | Thierry Reding <treding@nvidia.com> | 2018-06-18 14:01:51 +0200 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2019-10-28 11:18:33 +0100 |
commit | caccddcfc4b4de75930df2e8f7fd0c66556b13ff (patch) | |
tree | bac6706f2105a3557acea1b2a634bc0e99c0fa21 /drivers/gpu/drm/tegra/gr3d.c | |
parent | gpu: host1x: Explicitly initialize host1x_info structures (diff) | |
download | linux-caccddcfc4b4de75930df2e8f7fd0c66556b13ff.tar.xz linux-caccddcfc4b4de75930df2e8f7fd0c66556b13ff.zip |
gpu: host1x: Request channels for clients, not devices
A struct device doesn't carry much information that a channel might be
interested in, but the client very much does. Request channels for the
clients rather than their parent devices and store a pointer to them
in order to have that information available when needed.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/tegra/gr3d.c')
-rw-r--r-- | drivers/gpu/drm/tegra/gr3d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tegra/gr3d.c b/drivers/gpu/drm/tegra/gr3d.c index 8b9a35b1cbb3..87a386134cc4 100644 --- a/drivers/gpu/drm/tegra/gr3d.c +++ b/drivers/gpu/drm/tegra/gr3d.c @@ -49,7 +49,7 @@ static int gr3d_init(struct host1x_client *client) struct gr3d *gr3d = to_gr3d(drm); int err; - gr3d->channel = host1x_channel_request(client->dev); + gr3d->channel = host1x_channel_request(client); if (!gr3d->channel) return -ENOMEM; |