diff options
author | Sachin Kamat <sachin.kamat@samsung.com> | 2014-07-02 00:03:07 -0400 |
---|---|---|
committer | Inki Dae <daeinki@gmail.com> | 2014-08-03 03:52:13 -0400 |
commit | 7a9bf6e5c4c6448283b8087802bd5c8b3ebb528c (patch) | |
tree | de5a98a38874880bbd17de8b1c43161a12209391 | |
parent | d50a1907a3675300da14105add721826d73df63f (diff) |
drm/exynos: Remove unused variable from exynos_hdmi.c
'frame_size_code' is not used in the function. Remove it.
Signed-off-by: Sachin Kamat <sachin.kamat@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_hdmi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_hdmi.c b/drivers/gpu/drm/exynos/exynos_hdmi.c index 81df11d57673..738f2d7e16a1 100644 --- a/drivers/gpu/drm/exynos/exynos_hdmi.c +++ b/drivers/gpu/drm/exynos/exynos_hdmi.c | |||
@@ -1241,14 +1241,13 @@ static void hdmi_reg_acr(struct hdmi_context *hdata, u8 *acr) | |||
1241 | 1241 | ||
1242 | static void hdmi_audio_init(struct hdmi_context *hdata) | 1242 | static void hdmi_audio_init(struct hdmi_context *hdata) |
1243 | { | 1243 | { |
1244 | u32 sample_rate, bits_per_sample, frame_size_code; | 1244 | u32 sample_rate, bits_per_sample; |
1245 | u32 data_num, bit_ch, sample_frq; | 1245 | u32 data_num, bit_ch, sample_frq; |
1246 | u32 val; | 1246 | u32 val; |
1247 | u8 acr[7]; | 1247 | u8 acr[7]; |
1248 | 1248 | ||
1249 | sample_rate = 44100; | 1249 | sample_rate = 44100; |
1250 | bits_per_sample = 16; | 1250 | bits_per_sample = 16; |
1251 | frame_size_code = 0; | ||
1252 | 1251 | ||
1253 | switch (bits_per_sample) { | 1252 | switch (bits_per_sample) { |
1254 | case 20: | 1253 | case 20: |