aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/radeon/dce6_afmt.c
diff options
context:
space:
mode:
authorAlex Deucher <alexander.deucher@amd.com>2014-10-13 13:23:48 -0400
committerAlex Deucher <alexander.deucher@amd.com>2014-10-16 18:34:06 -0400
commit83d04c39f9048807a8500e575ae3f1718a3f45bb (patch)
tree87a635abaed70e5eb69749d2a27a3e5f67588b6a /drivers/gpu/drm/radeon/dce6_afmt.c
parentRevert "drm/radeon/dpm: drop clk/voltage dependency filters for SI" (diff)
downloadlinux-dev-83d04c39f9048807a8500e575ae3f1718a3f45bb.tar.xz
linux-dev-83d04c39f9048807a8500e575ae3f1718a3f45bb.zip
drm/radeon: initialize sadb to NULL in the audio code
Fixes kfree of the sadb buffer when it's NULL. Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/dce6_afmt.c')
-rw-r--r--drivers/gpu/drm/radeon/dce6_afmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/dce6_afmt.c b/drivers/gpu/drm/radeon/dce6_afmt.c
index c0bbf68dbc27..960a5f0f042f 100644
--- a/drivers/gpu/drm/radeon/dce6_afmt.c
+++ b/drivers/gpu/drm/radeon/dce6_afmt.c
@@ -155,7 +155,7 @@ void dce6_afmt_write_speaker_allocation(struct drm_encoder *encoder)
struct drm_connector *connector;
struct radeon_connector *radeon_connector = NULL;
u32 offset, tmp;
- u8 *sadb;
+ u8 *sadb = NULL;
int sad_count;
if (!dig || !dig->afmt || !dig->afmt->pin)