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>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/86335
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
This commit is contained in:
Paul Menzel 2025-02-09 07:51:57 +01:00 committed by Matt DeVillier
commit 597dba2e34

View file

@ -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,
};