diff options
author | Thierry Reding <treding@nvidia.com> | 2019-09-09 14:28:46 +0200 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2019-10-28 11:18:08 +0100 |
commit | d98914ebc2af4504e2abc266610c29b4131598a3 (patch) | |
tree | ad7fd4beb40ea15f2b6567bcba05637445ecbc94 /drivers/gpu/host1x/dev.h | |
parent | drm/tegra: Use cec_notifier_conn_(un)register() (diff) | |
download | linux-d98914ebc2af4504e2abc266610c29b4131598a3.tar.xz linux-d98914ebc2af4504e2abc266610c29b4131598a3.zip |
gpu: host1x: Do not limit DMA segment size
host1x nor any its clients have any limitations on the DMA segment size,
so don't pretend that they do.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/host1x/dev.h')
-rw-r--r-- | drivers/gpu/host1x/dev.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/host1x/dev.h b/drivers/gpu/host1x/dev.h index ff56f5e23a02..abafde7c665e 100644 --- a/drivers/gpu/host1x/dev.h +++ b/drivers/gpu/host1x/dev.h @@ -140,6 +140,8 @@ struct host1x { struct list_head devices; struct list_head list; + + struct device_dma_parameters dma_parms; }; void host1x_hypervisor_writel(struct host1x *host1x, u32 r, u32 v); |