leds: lm36274: Fix warning for undefined parameters
authorDan Murphy <dmurphy@ti.com>
Tue, 22 Sep 2020 19:06:38 +0000 (14:06 -0500)
committerPavel Machek <pavel@ucw.cz>
Wed, 30 Sep 2020 16:53:28 +0000 (18:53 +0200)
Fix warnings for undefined parameters when building with W=1.

Signed-off-by: Dan Murphy <dmurphy@ti.com>
Reviewed-by: Marek BehĂșn <kabel@kernel.org>
Signed-off-by: Pavel Machek <pavel@ucw.cz>
drivers/leds/leds-lm36274.c

index 582c6a821dc85f861021f41fb2d0d162c8a97a6e..aadb03468a40a00e930ecb0983cd7bf6f36bbdc5 100644 (file)
@@ -26,8 +26,8 @@
  * @lmu_data: Register and setting values for common code
  * @regmap: Devices register map
  * @dev: Pointer to the devices device struct
- * @led_sources - The LED strings supported in this array
- * @num_leds - Number of LED strings are supported in this array
+ * @led_sources: The LED strings supported in this array
+ * @num_leds: Number of LED strings are supported in this array
  */
 struct lm36274 {
        struct platform_device *pdev;
@@ -160,6 +160,7 @@ static struct platform_driver lm36274_driver = {
        .probe  = lm36274_probe,
        .driver = {
                .name = "lm36274-leds",
+               .of_match_table = of_lm36274_leds_match,
        },
 };
 module_platform_driver(lm36274_driver)