summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2010-09-20 14:37:07 -0700
committerJesse Barnes <jbarnes@virtuousgeek.org>2010-09-20 14:37:07 -0700
commit7ab19ae6feb06fa8140a16333fc7670936af80ac (patch)
tree8840af128b5ce58c4545e9cec83d04c5ea260041
parent4f12d8acbaa3a253d8b21d04bbfe17ed9ede6158 (diff)
intel_reg_dumper: eDP port is on the CPU, not PCH
Made me think there was another register until I checked the offset.
-rw-r--r--lib/intel_reg.h2
-rw-r--r--tools/intel_reg_dumper.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/intel_reg.h b/lib/intel_reg.h
index 42ad883d..44055fab 100644
--- a/lib/intel_reg.h
+++ b/lib/intel_reg.h
@@ -1566,7 +1566,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#define ADPA_HSYNC_ACTIVE_HIGH (1<<3)
#define ADPA_HSYNC_ACTIVE_LOW 0
-#define PCH_eDP_A 0x64000
+#define CPU_eDP_A 0x64000
#define PCH_DP_B 0xe4100
#define PCH_DP_C 0xe4200
#define PCH_DP_D 0xe4300
diff --git a/tools/intel_reg_dumper.c b/tools/intel_reg_dumper.c
index ff939ef3..fb242d7a 100644
--- a/tools/intel_reg_dumper.c
+++ b/tools/intel_reg_dumper.c
@@ -1649,7 +1649,7 @@ static struct reg_debug ironlake_debug_regs[] = {
DEFINEREG2(HDMIC, ironlake_debug_hdmi),
DEFINEREG2(HDMID, ironlake_debug_hdmi),
DEFINEREG2(PCH_LVDS, i830_debug_lvds),
- DEFINEREG(PCH_eDP_A),
+ DEFINEREG(CPU_eDP_A),
DEFINEREG(PCH_DP_B),
DEFINEREG(PCH_DP_C),
DEFINEREG(PCH_DP_D),