diff options
| author | Laurent Pinchart <[email protected]> | 2018-02-13 12:00:41 +0000 |
|---|---|---|
| committer | Tomi Valkeinen <[email protected]> | 2018-03-01 07:18:18 +0000 |
| 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 | kernel-d3541ca81dbddeefa0c42df448211a9dbaef0843.tar.gz kernel-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 <[email protected]>
Reviewed-by: Sebastian Reichel <[email protected]>
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 */ |
