Commit 7a9bf6e5 authored by Sachin Kamat's avatar Sachin Kamat Committed by Inki Dae

drm/exynos: Remove unused variable from exynos_hdmi.c

'frame_size_code' is not used in the function. Remove it.
Signed-off-by: default avatarSachin Kamat <sachin.kamat@samsung.com>
Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
parent d50a1907
...@@ -1241,14 +1241,13 @@ static void hdmi_reg_acr(struct hdmi_context *hdata, u8 *acr) ...@@ -1241,14 +1241,13 @@ static void hdmi_reg_acr(struct hdmi_context *hdata, u8 *acr)
static void hdmi_audio_init(struct hdmi_context *hdata) static void hdmi_audio_init(struct hdmi_context *hdata)
{ {
u32 sample_rate, bits_per_sample, frame_size_code; u32 sample_rate, bits_per_sample;
u32 data_num, bit_ch, sample_frq; u32 data_num, bit_ch, sample_frq;
u32 val; u32 val;
u8 acr[7]; u8 acr[7];
sample_rate = 44100; sample_rate = 44100;
bits_per_sample = 16; bits_per_sample = 16;
frame_size_code = 0;
switch (bits_per_sample) { switch (bits_per_sample) {
case 20: case 20:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment