Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/i2c: tda998x: always use the same device for all kernel messages

Rather than using a mixture of the parent DRM device and the component
device for messages from the driver, consistently use the component
device for all messages.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

+5 -5
+5 -5
drivers/gpu/drm/i2c/tda998x_drv.c
··· 1044 1044 !priv->wq_edid_wait, 1045 1045 msecs_to_jiffies(100)); 1046 1046 if (i < 0) { 1047 - dev_err(encoder->dev->dev, "read edid wait err %d\n", i); 1047 + dev_err(&priv->hdmi->dev, "read edid wait err %d\n", i); 1048 1048 return i; 1049 1049 } 1050 1050 } else { ··· 1059 1059 } 1060 1060 1061 1061 if (i == 0) { 1062 - dev_err(encoder->dev->dev, "read edid timeout\n"); 1062 + dev_err(&priv->hdmi->dev, "read edid timeout\n"); 1063 1063 return -ETIMEDOUT; 1064 1064 } 1065 1065 1066 1066 ret = reg_read_range(priv, REG_EDID_DATA_0, buf, EDID_LENGTH); 1067 1067 if (ret != EDID_LENGTH) { 1068 - dev_err(encoder->dev->dev, "failed to read edid block %d: %d\n", 1069 - blk, ret); 1068 + dev_err(&priv->hdmi->dev, "failed to read edid block %d: %d\n", 1069 + blk, ret); 1070 1070 return ret; 1071 1071 } 1072 1072 ··· 1132 1132 fail: 1133 1133 if (priv->rev == TDA19988) 1134 1134 reg_set(priv, REG_TX4, TX4_PD_RAM); 1135 - dev_warn(encoder->dev->dev, "failed to read EDID\n"); 1135 + dev_warn(&priv->hdmi->dev, "failed to read EDID\n"); 1136 1136 kfree(block); 1137 1137 return NULL; 1138 1138 }