drivers/intel/gma: Remove space between function name and '('
Change-Id: Id7634099e40c0bf97944be124b494c41d6335ad7 Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77501 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
This commit is contained in:
parent
0ba81d7db3
commit
3467704cd8
|
@ -31,7 +31,7 @@ drivers_intel_gma_displays_ssdt_generate(const struct i915_gpu_controller_info *
|
|||
acpigen_emit_byte(RETURN_OP);
|
||||
acpigen_write_package(conf->ndid);
|
||||
for (i = 0; i < conf->ndid; i++) {
|
||||
acpigen_write_dword (conf->did[i] | 0x80010000);
|
||||
acpigen_write_dword(conf->did[i] | 0x80010000);
|
||||
}
|
||||
acpigen_pop_len(); /* End Package. */
|
||||
|
||||
|
|
|
@ -89,7 +89,7 @@ void intel_gmbus_read_edid(u8 *mmio, u8 bus, u8 slave, u8 *edid, u32 edid_size)
|
|||
write32(GMBUS1_ADDR, GMBUS_SW_RDY | GMBUS_CYCLE_STOP);
|
||||
write32(GMBUS2_ADDR, GMBUS_INUSE);
|
||||
|
||||
printk (BIOS_SPEW, "EDID:\n");
|
||||
printk(BIOS_SPEW, "EDID:\n");
|
||||
for (i = 0; i < 128; i++) {
|
||||
printk(BIOS_SPEW, " %02x", edid[i]);
|
||||
if ((i & 0xf) == 0xf)
|
||||
|
|
Loading…
Reference in New Issue