diff options
| author | 2018-02-13 14:00:41 +0200 | |
|---|---|---|
| committer | 2018-03-01 09:18:18 +0200 | |
| commit | d3541ca81dbddeefa0c42df448211a9dbaef0843 (patch) | |
| tree | f6a9425fa31c30f7f4597fd6ab48a8a250bf7502 /drivers/gpu/drm/omapdrm/dss/dss.h | |
| parent | drm: omapdrm: dss: Store DSS device pointer in the omapdrm private data (diff) | |
| download | wireguard-linux-d3541ca81dbddeefa0c42df448211a9dbaef0843.tar.xz wireguard-linux-d3541ca81dbddeefa0c42df448211a9dbaef0843.zip | |
drm: omapdrm: dss: Store dispc ops in dss_device structure
Remove the global dispc ops variable by storing it in the dss_device
structure.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Diffstat (limited to 'drivers/gpu/drm/omapdrm/dss/dss.h')
| -rw-r--r-- | drivers/gpu/drm/omapdrm/dss/dss.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/omapdrm/dss/dss.h b/drivers/gpu/drm/omapdrm/dss/dss.h index 764c52025a27..348378f1b5a5 100644 --- a/drivers/gpu/drm/omapdrm/dss/dss.h +++ b/drivers/gpu/drm/omapdrm/dss/dss.h @@ -271,6 +271,8 @@ struct dss_device { struct dss_pll *plls[4]; struct dss_pll *video1_pll; struct dss_pll *video2_pll; + + const struct dispc_ops *dispc_ops; }; /* core */ |
