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

gma500: Remove psb_intel_output from ddc_probe and ddc_get_modes

Signed-off-by: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>

authored by

Patrik Jakobsson and committed by
Dave Airlie
352b16a0 75e9d019

+10 -11
+3 -2
drivers/gpu/drm/gma500/psb_intel_drv.h
··· 166 166 struct psb_intel_i2c_chan *psb_intel_i2c_create(struct drm_device *dev, 167 167 const u32 reg, const char *name); 168 168 void psb_intel_i2c_destroy(struct psb_intel_i2c_chan *chan); 169 - int psb_intel_ddc_get_modes(struct psb_intel_output *psb_intel_output); 170 - extern bool psb_intel_ddc_probe(struct psb_intel_output *psb_intel_output); 169 + int psb_intel_ddc_get_modes(struct drm_connector *connector, 170 + struct i2c_adapter *adapter); 171 + extern bool psb_intel_ddc_probe(struct i2c_adapter *adapter); 171 172 172 173 extern void psb_intel_crtc_init(struct drm_device *dev, int pipe, 173 174 struct psb_intel_mode_device *mode_dev);
+7 -9
drivers/gpu/drm/gma500/psb_intel_modes.c
··· 26 26 * psb_intel_ddc_probe 27 27 * 28 28 */ 29 - bool psb_intel_ddc_probe(struct psb_intel_output *psb_intel_output) 29 + bool psb_intel_ddc_probe(struct i2c_adapter *adapter) 30 30 { 31 31 u8 out_buf[] = { 0x0, 0x0 }; 32 32 u8 buf[2]; ··· 46 46 } 47 47 }; 48 48 49 - ret = i2c_transfer(&psb_intel_output->ddc_bus->adapter, msgs, 2); 49 + ret = i2c_transfer(adapter, msgs, 2); 50 50 if (ret == 2) 51 51 return true; 52 52 ··· 59 59 * 60 60 * Fetch the EDID information from @connector using the DDC bus. 61 61 */ 62 - int psb_intel_ddc_get_modes(struct psb_intel_output *psb_intel_output) 62 + int psb_intel_ddc_get_modes(struct drm_connector *connector, 63 + struct i2c_adapter *adapter) 63 64 { 64 65 struct edid *edid; 65 66 int ret = 0; 66 67 67 - edid = 68 - drm_get_edid(&psb_intel_output->base, 69 - &psb_intel_output->ddc_bus->adapter); 68 + edid = drm_get_edid(connector, adapter); 70 69 if (edid) { 71 - drm_mode_connector_update_edid_property(&psb_intel_output-> 72 - base, edid); 73 - ret = drm_add_edid_modes(&psb_intel_output->base, edid); 70 + drm_mode_connector_update_edid_property(connector, edid); 71 + ret = drm_add_edid_modes(connector, edid); 74 72 kfree(edid); 75 73 } 76 74 return ret;