drivers/gfx: Remove unnecessary line continuations

Change-Id: Ic71516ae73d61c9f13876a5acc071645bbe8e866
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81594
Reviewed-by: Eric Lai <ericllai@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes Haouas 2024-03-30 10:13:29 +01:00 committed by Felix Held
parent 04b89c5a37
commit ff40cf438e

View File

@ -119,8 +119,8 @@ static void gfx_fill_ssdt_generator(const struct device *dev)
if (!config->device[i].addr && config->device[i].type)
/* Though not strictly necessary, set the display index and
port attachment to the device index, to ensure uniqueness */
config->device[i].addr = DOD_DID_STD | DOD_FW_DETECT | \
(config->device[i].type << 8) | \
config->device[i].addr = DOD_DID_STD | DOD_FW_DETECT |
(config->device[i].type << 8) |
(i << 4) | (i);
acpigen_write_dword(config->device[i].addr);
}