]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ASoC: codecs: rt1019: Fix definition of device_id tables
authorCezary Rojewski <cezary.rojewski@intel.com>
Wed, 26 Feb 2025 11:25:54 +0000 (12:25 +0100)
committerMark Brown <broonie@kernel.org>
Mon, 3 Mar 2025 12:51:26 +0000 (12:51 +0000)
There shall be no comma after the terminator entry and initializing
fields with 0 for statically defined structs is redundant.

Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://patch.msgid.link/20250226112612.166989-5-cezary.rojewski@intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/rt1019.c

index d989d06a261479d83ea94d37ff7c6f77243a35b1..86539c6f6cc1e9725f03c5a13bbd43d1f4705830 100644 (file)
@@ -547,14 +547,14 @@ MODULE_DEVICE_TABLE(i2c, rt1019_i2c_id);
 
 static const struct of_device_id rt1019_of_match[] __maybe_unused = {
        { .compatible = "realtek,rt1019", },
-       {},
+       { }
 };
 MODULE_DEVICE_TABLE(of, rt1019_of_match);
 
 #ifdef CONFIG_ACPI
 static const struct acpi_device_id rt1019_acpi_match[] = {
-       { "10EC1019", 0},
-       { },
+       { "10EC1019" },
+       { }
 };
 MODULE_DEVICE_TABLE(acpi, rt1019_acpi_match);
 #endif