diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2017-08-06 15:56:30 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2017-08-07 14:34:31 +0000 |
commit | 8da22868851e752ce7c633551f74ef3ef8bf4b6c (patch) | |
tree | dcfefd881707255337e0a40e068bc926d386704a /src/northbridge/intel/gm45 | |
parent | 6aea6f7a6b524d86be4fbdaf434aeda6d9f721a9 (diff) | |
download | coreboot-8da22868851e752ce7c633551f74ef3ef8bf4b6c.tar.xz |
nb/intel/*/gma.c: Use macros for GMBUS numbers
Change-Id: I885b6bd9f5be6b4e3696a530016123a3e81c4b10
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/20889
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/northbridge/intel/gm45')
-rw-r--r-- | src/northbridge/intel/gm45/gma.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/northbridge/intel/gm45/gma.c b/src/northbridge/intel/gm45/gma.c index 24046712b4..00b3fa0a2b 100644 --- a/src/northbridge/intel/gm45/gma.c +++ b/src/northbridge/intel/gm45/gma.c @@ -588,8 +588,8 @@ static void gma_ngi(struct device *const dev, struct edid *edid_lvds) mmio = res2mmio(gtt_res, 0, 0); printk(BIOS_DEBUG, "VGA EDID\n"); - intel_gmbus_read_edid(mmio + GMBUS0, 2, 0x50, edid_data_vga, - sizeof(edid_data_vga)); + intel_gmbus_read_edid(mmio + GMBUS0, GMBUS_PORT_VGADDC, 0x50, + edid_data_vga, sizeof(edid_data_vga)); intel_gmbus_stop(mmio + GMBUS0); vga_edid_status = decode_edid(edid_data_vga, sizeof(edid_data_vga), &edid_vga); @@ -748,8 +748,8 @@ static void gma_func0_init(struct device *dev) } printk(BIOS_DEBUG, "LVDS EDID\n"); - intel_gmbus_read_edid(mmio + GMBUS0, 3, 0x50, edid_data_lvds, - sizeof(edid_data_lvds)); + intel_gmbus_read_edid(mmio + GMBUS0, GMBUS_PORT_PANEL, 0x50, + edid_data_lvds, sizeof(edid_data_lvds)); intel_gmbus_stop(mmio + GMBUS0); decode_edid(edid_data_lvds, sizeof(edid_data_lvds), &edid_lvds); |