From: Wu Fengguang Date: Sat, 12 Nov 2011 03:12:43 +0000 (+0800) Subject: intel_audio_dump: fix Digital_Port_D_Detected copy&paste error X-Git-Tag: 1.2~112 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=305443cf0ae5cc7566aceb6dc37aa3f51f51c9fb;p=platform%2Fupstream%2Fintel-gpu-tools.git intel_audio_dump: fix Digital_Port_D_Detected copy&paste error Signed-off-by: Wu Fengguang Signed-off-by: Daniel Vetter --- diff --git a/tools/intel_audio_dump.c b/tools/intel_audio_dump.c index 724efb6..0a05b37 100644 --- a/tools/intel_audio_dump.c +++ b/tools/intel_audio_dump.c @@ -537,7 +537,7 @@ static void dump_ironlake(void) printf("HDMIB HDMIB_Enable\t\t\t\t\t%u\n", !!(dword & SDVO_ENABLE)); printf("HDMIB Transcoder_Select\t\t\t\t\t%s\n", BIT(dword, 30) ? "Transcoder B" : "Transcoder A"); printf("HDMIB HDCP_Port_Select\t\t\t\t\t%lu\n", BIT(dword, 5)); - printf("HDMIB Digital_Port_D_Detected\t\t\t\t%lu\n", BIT(dword, 2)); + printf("HDMIB Digital_Port_B_Detected\t\t\t\t%lu\n", BIT(dword, 2)); printf("HDMIB Null_packets_enabled_during_Vsync\t\t\t%u\n", !!(dword & SDVO_NULL_PACKETS_DURING_VSYNC)); printf("HDMIB Audio_Output_Enable\t\t\t\t%u\n", !!(dword & SDVO_AUDIO_ENABLE)); @@ -545,7 +545,7 @@ static void dump_ironlake(void) printf("HDMIC HDMIC_Enable\t\t\t\t\t%u\n", !!(dword & SDVO_ENABLE)); printf("HDMIC Transcoder_Select\t\t\t\t\t%s\n", BIT(dword, 30) ? "Transcoder B" : "Transcoder A"); printf("HDMIC HDCP_Port_Select\t\t\t\t\t%lu\n", BIT(dword, 5)); - printf("HDMIC Digital_Port_D_Detected\t\t\t\t%lu\n", BIT(dword, 2)); + printf("HDMIC Digital_Port_C_Detected\t\t\t\t%lu\n", BIT(dword, 2)); printf("HDMIC Null_packets_enabled_during_Vsync\t\t\t%u\n", !!(dword & SDVO_NULL_PACKETS_DURING_VSYNC)); printf("HDMIC Audio_Output_Enable\t\t\t\t%u\n", !!(dword & SDVO_AUDIO_ENABLE));