diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-07-24 13:06:54 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-08-30 08:51:11 +0300 |
commit | 9560dc1059222d059d494a64e5da4c54d23838da (patch) | |
tree | c42e4363954b421c0f46bb0e336060ad527414b3 /include | |
parent | a73fdc647417699833f22d0f239affe22e062827 (diff) | |
download | blackbird-op-linux-9560dc1059222d059d494a64e5da4c54d23838da.tar.gz blackbird-op-linux-9560dc1059222d059d494a64e5da4c54d23838da.zip |
OMAPDSS: rename omap_dss_device's 'device' field to 'dst'
In the old panel device model we had omap_dss_output entities,
representing the encoders in the DSS block. This entity had "device"
field, which pointed to the panel that was using the omap_dss_output.
With the new panel device model, the omap_dss_output is integrated into
omap_dss_device, which now represents a "display entity". Thus the "device"
field, now in omap_dss_device, points to the next entity in the display
entity-chain.
This patch renames the "device" field to "dst", which much better tells
what the field points to.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: Archit Taneja <archit@ti.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/video/omapdss.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h index 5fa81ddb43ad..3d7c51a6f9ff 100644 --- a/include/video/omapdss.h +++ b/include/video/omapdss.h @@ -793,7 +793,7 @@ struct omap_dss_device { /* dynamic fields */ struct omap_overlay_manager *manager; - struct omap_dss_device *device; + struct omap_dss_device *dst; }; struct omap_dss_hdmi_data |