This is a note to let you know that I've just added the patch titled drm/radeon: fix hdmi callbacks for rv6xx (incorrectly added to r520) to the 3.11-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: drm-radeon-fix-hdmi-callbacks-for-rv6xx-incorrectly-added-to-r520.patch and it can be found in the queue-3.11 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From zajec5@xxxxxxxxx Wed Oct 9 14:26:19 2013 From: Rafał Miłecki <zajec5@xxxxxxxxx> Date: Tue, 8 Oct 2013 11:36:58 +0200 Subject: drm/radeon: fix hdmi callbacks for rv6xx (incorrectly added to r520) To: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx>, stable@xxxxxxxxxxxxxxx Cc: Rafał Miłecki <zajec5@xxxxxxxxx>, Alex Deucher <alexander.deucher@xxxxxxx> Message-ID: <1381225018-20305-1-git-send-email-zajec5@xxxxxxxxx> From: Rafał Miłecki <zajec5@xxxxxxxxx> Commit 99d79aa2f3b7729e7290e8bda5d0dd8b0240ec62 was backported slightly wrong adding callbacks in the wrong struct. This moves callbacks to the correct place (matching mainline patch/code). Signed-off-by: Rafał Miłecki <zajec5@xxxxxxxxx> Reviewed-by: Alex Deucher <alexander.deucher@xxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/gpu/drm/radeon/radeon_asic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/gpu/drm/radeon/radeon_asic.c +++ b/drivers/gpu/drm/radeon/radeon_asic.c @@ -926,8 +926,6 @@ static struct radeon_asic r520_asic = { .wait_for_vblank = &avivo_wait_for_vblank, .set_backlight_level = &atombios_set_backlight_level, .get_backlight_level = &atombios_get_backlight_level, - .hdmi_enable = &r600_hdmi_enable, - .hdmi_setmode = &r600_hdmi_setmode, }, .copy = { .blit = &r100_copy_blit, @@ -1115,6 +1113,8 @@ static struct radeon_asic rv6xx_asic = { .wait_for_vblank = &avivo_wait_for_vblank, .set_backlight_level = &atombios_set_backlight_level, .get_backlight_level = &atombios_get_backlight_level, + .hdmi_enable = &r600_hdmi_enable, + .hdmi_setmode = &r600_hdmi_setmode, }, .copy = { .blit = &r600_copy_blit, Patches currently in stable-queue which might be from zajec5@xxxxxxxxx are queue-3.11/drm-radeon-fix-hdmi-callbacks-for-rv6xx-incorrectly-added-to-r520.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html