]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm/i915/lspcon: Get DDC adapter via container_of() instead of cached ptr
authorImre Deak <imre.deak@intel.com>
Mon, 24 Oct 2016 16:33:30 +0000 (19:33 +0300)
committerImre Deak <imre.deak@intel.com>
Wed, 26 Oct 2016 09:41:01 +0000 (12:41 +0300)
We can use the container_of() magic to get to the DDC adapter, so no
need for caching a pointer to it. We'll also need to get at the intel_dp
ptr in the following patch, so add a helper that can be used for both
purposes.

Cc: Shashank Sharma <shashank.sharma@intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1477326811-30431-8-git-send-email-imre.deak@intel.com
drivers/gpu/drm/i915/intel_drv.h
drivers/gpu/drm/i915/intel_lspcon.c

index 20fb6e72e90e889c4673a19693d746f88baf19b5..5989c48d79644dc76181acd6334014386b960060 100644 (file)
@@ -974,7 +974,6 @@ struct intel_dp {
 struct intel_lspcon {
        bool active;
        enum drm_lspcon_mode mode;
-       struct drm_dp_aux *aux;
 };
 
 struct intel_digital_port {
index c5f278b250a789a41bf1bf7fe53d0ad360a40961..3dc5a0be7857c5c96a78c01cd34b11d2a77f0331 100644 (file)
 #include <drm/drm_dp_dual_mode_helper.h>
 #include "intel_drv.h"
 
+static struct intel_dp *lspcon_to_intel_dp(struct intel_lspcon *lspcon)
+{
+       struct intel_digital_port *dig_port =
+               container_of(lspcon, struct intel_digital_port, lspcon);
+
+       return &dig_port->dp;
+}
+
 static enum drm_lspcon_mode lspcon_get_current_mode(struct intel_lspcon *lspcon)
 {
        enum drm_lspcon_mode current_mode = DRM_LSPCON_MODE_INVALID;
-       struct i2c_adapter *adapter = &lspcon->aux->ddc;
+       struct i2c_adapter *adapter = &lspcon_to_intel_dp(lspcon)->aux.ddc;
 
        if (drm_lspcon_get_mode(adapter, &current_mode))
                DRM_ERROR("Error reading LSPCON mode\n");
@@ -45,7 +53,7 @@ static int lspcon_change_mode(struct intel_lspcon *lspcon,
 {
        int err;
        enum drm_lspcon_mode current_mode;
-       struct i2c_adapter *adapter = &lspcon->aux->ddc;
+       struct i2c_adapter *adapter = &lspcon_to_intel_dp(lspcon)->aux.ddc;
 
        err = drm_lspcon_get_mode(adapter, &current_mode);
        if (err) {
@@ -72,7 +80,7 @@ static int lspcon_change_mode(struct intel_lspcon *lspcon,
 static bool lspcon_probe(struct intel_lspcon *lspcon)
 {
        enum drm_dp_dual_mode_type adaptor_type;
-       struct i2c_adapter *adapter = &lspcon->aux->ddc;
+       struct i2c_adapter *adapter = &lspcon_to_intel_dp(lspcon)->aux.ddc;
 
        /* Lets probe the adaptor and check its type */
        adaptor_type = drm_dp_dual_mode_detect(adapter);
@@ -111,7 +119,6 @@ bool lspcon_init(struct intel_digital_port *intel_dig_port)
 
        lspcon->active = false;
        lspcon->mode = DRM_LSPCON_MODE_INVALID;
-       lspcon->aux = &dp->aux;
 
        if (!lspcon_probe(lspcon)) {
                DRM_ERROR("Failed to probe lspcon\n");