ACPI: video: Fix indentation of video_detect_dmi_table[] entries
authorHans de Goede <hdegoede@redhat.com>
Sat, 18 Jun 2022 17:19:51 +0000 (19:19 +0200)
committerHans de Goede <hdegoede@redhat.com>
Sat, 3 Sep 2022 10:17:27 +0000 (12:17 +0200)
commitc2d6920e9877c8298502ec6163a93ab0db1dd761
treec329d0ff3718874a880fbef894048ca4457bd292
parent10212754a0d2c4b4ae951c04f154a82dd2a1f9c4
ACPI: video: Fix indentation of video_detect_dmi_table[] entries

The video_detect_dmi_table[] uses an unusual indentation for
before the ".name = ..." named struct initializers.

Instead of being indented with an extra tab compared to
the previous line's '{' these are indented to with only
a single space to allow for long DMI_MATCH() lines without
wrapping.

But over time some entries did not event have the single space
indent in front of the ".name = ..." lines.

Make things consistent by using a single space indent for these
lines everywhere.

Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
drivers/acpi/video_detect.c