diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2010-03-14 12:22:44 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-03-31 14:55:50 +1000 |
commit | ac1aade6876465060ebf9a71675dcb7305f0bafa (patch) | |
tree | e9f3ce2125bf27476ddbdefd5331f0617de9bc44 /drivers/gpu/drm/radeon/radeon_connectors.c | |
parent | 3595be778d8cb887f0e0575ef0a0c1a094d120bb (diff) | |
download | kernel_goldelico_gta04-ac1aade6876465060ebf9a71675dcb7305f0bafa.zip kernel_goldelico_gta04-ac1aade6876465060ebf9a71675dcb7305f0bafa.tar.gz kernel_goldelico_gta04-ac1aade6876465060ebf9a71675dcb7305f0bafa.tar.bz2 |
drm/radeon/kms: use new pre/post_xfer i2c bit algo hooks
This allows us to remove the internal bit algo bus used by
the radeon i2c algo. We now register a radeon algo adapter
if the gpio line is hw capable and the hw inplementation is
available, otherwise we register a bit algo adapter.
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/radeon_connectors.c')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_connectors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_connectors.c b/drivers/gpu/drm/radeon/radeon_connectors.c index ee0083f..60d5981 100644 --- a/drivers/gpu/drm/radeon/radeon_connectors.c +++ b/drivers/gpu/drm/radeon/radeon_connectors.c @@ -940,7 +940,7 @@ static void radeon_dp_connector_destroy(struct drm_connector *connector) if (radeon_connector->edid) kfree(radeon_connector->edid); if (radeon_dig_connector->dp_i2c_bus) - radeon_i2c_destroy_dp(radeon_dig_connector->dp_i2c_bus); + radeon_i2c_destroy(radeon_dig_connector->dp_i2c_bus); kfree(radeon_connector->con_priv); drm_sysfs_connector_remove(connector); drm_connector_cleanup(connector); |