ACPI: docs: enumeration: Drop comma for terminator entry
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 28 Feb 2022 22:39:36 +0000 (00:39 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 3 Mar 2022 19:34:45 +0000 (20:34 +0100)
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>
Documentation/firmware-guide/acpi/enumeration.rst

index caa9a5e508b2e3fff2fe073506d3830e43fe01d1..621ae95bc472226bf156cd725763a16e6cff2ff0 100644 (file)
@@ -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);