From 597dba2e344a317d8a335c00a98f3229d803c2b7 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Sun, 9 Feb 2025 07:51:57 +0100 Subject: [PATCH] drivers/asmedia/asm1061: Align = only with tabs and not spaces The `.devices` line only had once space before the =, as the tab boundary is directly after the s of devices. The lines above had once space after the last tab, so the equal sign is closer to the left side. As the whole file aligns the equal sign, replace the space by a tab, and do *not* go the route of not aligning the equal signs. Change-Id: Ic49dc56263cafce3cfe40bb3ed7036fa25300f9f Signed-off-by: Paul Menzel Reviewed-on: https://review.coreboot.org/c/coreboot/+/86335 Tested-by: build bot (Jenkins) Reviewed-by: Elyes Haouas --- src/drivers/asmedia/asm1061.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/drivers/asmedia/asm1061.c b/src/drivers/asmedia/asm1061.c index 6d2edaa94e..29d2704f45 100644 --- a/src/drivers/asmedia/asm1061.c +++ b/src/drivers/asmedia/asm1061.c @@ -42,7 +42,7 @@ static const unsigned short pci_device_ids[] = { }; static const struct pci_driver asmedia_asm1061 __pci_driver = { - .ops = &asm1061_ops, - .vendor = 0x1b21, - .devices = pci_device_ids, + .ops = &asm1061_ops, + .vendor = 0x1b21, + .devices = pci_device_ids, };