summaryrefslogtreecommitdiff
path: root/tools/intel_infoframes.c
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2014-03-27 11:10:18 -0700
committerJesse Barnes <jbarnes@virtuousgeek.org>2014-03-27 11:10:18 -0700
commit2031da4073da0dc09ed9debb319e924ae5dc8b2a (patch)
tree7c4e97a6b8b46da472d6ebddd50165b5d206cc49 /tools/intel_infoframes.c
parentc1c96d8342ee2d629d09a2be576d5bf984e9228b (diff)
intel_infoframes: remove bogus "being transmitted" check from VLV
This bit is reserved on VLV.
Diffstat (limited to 'tools/intel_infoframes.c')
-rw-r--r--tools/intel_infoframes.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/intel_infoframes.c b/tools/intel_infoframes.c
index 87f4a298..e838fddf 100644
--- a/tools/intel_infoframes.c
+++ b/tools/intel_infoframes.c
@@ -442,7 +442,7 @@ static void dump_avi_info(Transcoder transcoder)
printf("AVI InfoFrame:\n");
- if (gen == 4 || IS_VALLEYVIEW(pci_dev->device_id)) {
+ if (gen == 4) {
printf("- %sbeing transmitted\n",
val & DIP_CTL_BUFFER_TRANS_ACTIVE_GEN4 ? "" : "not ");
}
@@ -541,7 +541,7 @@ static void dump_vendor_info(Transcoder transcoder)
printf("Vendor InfoFrame:\n");
- if (gen == 4 || IS_VALLEYVIEW(pci_dev->device_id)) {
+ if (gen == 4) {
printf("- %sbeing transmitted\n",
val & DIP_CTL_BUFFER_TRANS_ACTIVE_GEN4 ? "" : "not ");
}
@@ -576,7 +576,7 @@ static void dump_gamut_info(Transcoder transcoder)
printf("Gamut InfoFrame:\n");
- if (gen == 4 || IS_VALLEYVIEW(pci_dev->device_id)) {
+ if (gen == 4) {
printf("- %sbeing transmitted\n",
val & DIP_CTL_BUFFER_TRANS_ACTIVE_GEN4 ? "" : "not ");
}
@@ -604,7 +604,7 @@ static void dump_spd_info(Transcoder transcoder)
printf("SPD InfoFrame:\n");
- if (gen == 4 || IS_VALLEYVIEW(pci_dev->device_id)) {
+ if (gen == 4) {
printf("- %sbeing transmitted\n",
val & DIP_CTL_BUFFER_TRANS_ACTIVE_GEN4 ? "" : "not ");
}