diff options
author | Thierry Reding <treding@nvidia.com> | 2018-06-18 15:01:51 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2019-10-28 13:18:33 +0300 |
commit | caccddcfc4b4de75930df2e8f7fd0c66556b13ff (patch) | |
tree | bac6706f2105a3557acea1b2a634bc0e99c0fa21 /drivers/gpu/drm/tegra/vic.c | |
parent | 8f45f5071ad2be6ace6f77892e0015e89fd42028 (diff) | |
download | linux-caccddcfc4b4de75930df2e8f7fd0c66556b13ff.tar.xz |
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/vic.c')
-rw-r--r-- | drivers/gpu/drm/tegra/vic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tegra/vic.c b/drivers/gpu/drm/tegra/vic.c index cd0399fd8c63..c97a61c877af 100644 --- a/drivers/gpu/drm/tegra/vic.c +++ b/drivers/gpu/drm/tegra/vic.c @@ -198,7 +198,7 @@ static int vic_init(struct host1x_client *client) vic->domain = tegra->domain; } - vic->channel = host1x_channel_request(client->dev); + vic->channel = host1x_channel_request(client); if (!vic->channel) { err = -ENOMEM; goto detach; |