Paul Menzel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/86335?usp=email )
Change subject: drivers/asmedia/asm1061: Align = only with tabs and not spaces ......................................................................
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 pmenzel@molgen.mpg.de --- M src/drivers/asmedia/asm1061.c 1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/35/86335/1
diff --git a/src/drivers/asmedia/asm1061.c b/src/drivers/asmedia/asm1061.c index 6d2edaa..29d2704 100644 --- a/src/drivers/asmedia/asm1061.c +++ b/src/drivers/asmedia/asm1061.c @@ -42,7 +42,7 @@ };
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, };