]> git.karo-electronics.de Git - karo-tx-linux.git/commit
drm/radeon: Don't destroy I2C Bus Rec in radeon_ext_tmds_enc_destroy().
authorEgbert Eich <eich@suse.de>
Mon, 15 Oct 2012 06:21:39 +0000 (08:21 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 21 Oct 2012 16:17:12 +0000 (09:17 -0700)
commitcbdf1102b66ad6c98824d9f82f4d615c2e2ca270
tree8dba581af99dc38c98995c6c987455d7b0c71c9f
parent298d0427b4f0887098d7c3b66a919214f7f433e6
drm/radeon: Don't destroy I2C Bus Rec in radeon_ext_tmds_enc_destroy().

commit 082918471139b07964967cfe5f70230909c82ae1 upstream.

radeon_i2c_fini() walks thru the list of I2C bus recs rdev->i2c_bus[]
to destroy each of them.
radeon_ext_tmds_enc_destroy() however also has code to destroy it's
associated I2C bus rec which has been obtained by radeon_i2c_lookup()
and is therefore also in the i2c_bus[] list.
This causes a double free resulting in a kernel panic when unloading
the radeon driver.
Removing destroy code from radeon_ext_tmds_enc_destroy() fixes this
problem.

agd5f: fix compiler warning

Signed-off-by: Egbert Eich <eich@suse.de>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/gpu/drm/radeon/radeon_legacy_encoders.c