diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2022-03-01 01:39:36 +0300 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2022-03-03 22:34:45 +0300 |
commit | a889e50ea088a525338e7fb9adc887d407e4a5c4 (patch) | |
tree | 524a558dd5a254c702e7156293cf8de5c451e6db /Documentation/firmware-guide | |
parent | 6bf87c4de91ca31f829587f69cd8ea13576a483d (diff) | |
download | linux-a889e50ea088a525338e7fb9adc887d407e4a5c4.tar.xz |
ACPI: docs: enumeration: Drop comma for terminator entry
Drop comma for terminator entry to avoid copy'n'paste of this pattern.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'Documentation/firmware-guide')
-rw-r--r-- | Documentation/firmware-guide/acpi/enumeration.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/firmware-guide/acpi/enumeration.rst b/Documentation/firmware-guide/acpi/enumeration.rst index caa9a5e508b2..621ae95bc472 100644 --- a/Documentation/firmware-guide/acpi/enumeration.rst +++ b/Documentation/firmware-guide/acpi/enumeration.rst @@ -173,7 +173,7 @@ to at25 SPI eeprom driver (this is meant for the above ACPI snippet):: static const struct acpi_device_id at25_acpi_match[] = { { "AT25", 0 }, - { }, + { } }; MODULE_DEVICE_TABLE(acpi, at25_acpi_match); @@ -230,7 +230,7 @@ input driver:: static const struct acpi_device_id mpu3050_acpi_match[] = { { "MPU3050", 0 }, - { }, + { } }; MODULE_DEVICE_TABLE(acpi, mpu3050_acpi_match); |