diff options
author | Lucas Stach <l.stach@pengutronix.de> | 2017-11-24 14:02:38 +0300 |
---|---|---|
committer | Lucas Stach <l.stach@pengutronix.de> | 2018-01-02 19:31:59 +0300 |
commit | ef146c00e2c29c5f926c6a7e9dc354c0cbeb2818 (patch) | |
tree | ea3c440c4843d69fedeaa509bf4e8554f96ae784 /drivers/gpu/drm/etnaviv/etnaviv_gpu.h | |
parent | e0329e6cfa6274ceb54d175b5e6ac19c00024c33 (diff) | |
download | linux-ef146c00e2c29c5f926c6a7e9dc354c0cbeb2818.tar.xz |
drm/etnaviv: move PMRs to submit object
To make them available to the event worker even after the actual
command stream execution has finished.
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Diffstat (limited to 'drivers/gpu/drm/etnaviv/etnaviv_gpu.h')
-rw-r--r-- | drivers/gpu/drm/etnaviv/etnaviv_gpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/etnaviv/etnaviv_gpu.h b/drivers/gpu/drm/etnaviv/etnaviv_gpu.h index ccef6139cf70..eea823838b5f 100644 --- a/drivers/gpu/drm/etnaviv/etnaviv_gpu.h +++ b/drivers/gpu/drm/etnaviv/etnaviv_gpu.h @@ -89,7 +89,7 @@ struct etnaviv_chip_identity { struct etnaviv_event { struct dma_fence *fence; - struct etnaviv_cmdbuf *cmdbuf; + struct etnaviv_gem_submit *submit; void (*sync_point)(struct etnaviv_gpu *gpu, struct etnaviv_event *event); }; |