Unify ACPI ID tables format by:
- surrounding HID by spaces
- dropping unnecessary driver_data assignment to 0
- dropping comma at the terminator entry
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
         * The CHPN0001 ACPI device, which is used to describe the Chipone
         * ICN8505 controller, has a _CID of PNP0C50 but is not HID compatible.
         */
-       {"CHPN0001", 0 },
-       { },
+       { "CHPN0001" },
+       { }
 };
 
 /* HID I²C Device: 3cdff6f7-4267-4555-ad05-b30a3d8938de */
 }
 
 static const struct acpi_device_id i2c_hid_acpi_match[] = {
-       {"ACPI0C50", 0 },
-       {"PNP0C50", 0 },
-       { },
+       { "ACPI0C50" },
+       { "PNP0C50" },
+       { }
 };
 MODULE_DEVICE_TABLE(acpi, i2c_hid_acpi_match);