Commit db30c91a authored by Lee Jones's avatar Lee Jones Committed by Pavel Machek

leds: leds-mlxcpld: Fix a bunch of kernel-doc formatting issues

Fixes the following W=1 kernel build warning(s):

 drivers/leds/leds-mlxcpld.c:72: warning: cannot understand function prototype: 'struct mlxcpld_param '
 drivers/leds/leds-mlxcpld.c:83: warning: cannot understand function prototype: 'struct mlxcpld_led_priv '
 drivers/leds/leds-mlxcpld.c:98: warning: cannot understand function prototype: 'struct mlxcpld_led_profile '
 drivers/leds/leds-mlxcpld.c:114: warning: cannot understand function prototype: 'struct mlxcpld_led_pdata '

Cc: Vadim Pasternak <vadimp@nvidia.com>
Cc: Pavel Machek <pavel@ucw.cz>
Cc: linux-leds@vger.kernel.org
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarPavel Machek <pavel@ucw.cz>
parent 46cc5941
...@@ -64,10 +64,10 @@ ...@@ -64,10 +64,10 @@
#define MLXCPLD_LED_BLINK_6HZ 83 /* ~83 msec off/on */ #define MLXCPLD_LED_BLINK_6HZ 83 /* ~83 msec off/on */
/** /**
* mlxcpld_param - LED access parameters: * struct mlxcpld_param - LED access parameters:
* @offset - offset for LED access in CPLD device * @offset: offset for LED access in CPLD device
* @mask - mask for LED access in CPLD device * @mask: mask for LED access in CPLD device
* @base_color - base color code for LED * @base_color: base color code for LED
**/ **/
struct mlxcpld_param { struct mlxcpld_param {
u8 offset; u8 offset;
...@@ -76,9 +76,9 @@ struct mlxcpld_param { ...@@ -76,9 +76,9 @@ struct mlxcpld_param {
}; };
/** /**
* mlxcpld_led_priv - LED private data: * struct mlxcpld_led_priv - LED private data:
* @cled - LED class device instance * @cled: LED class device instance
* @param - LED CPLD access parameters * @param: LED CPLD access parameters
**/ **/
struct mlxcpld_led_priv { struct mlxcpld_led_priv {
struct led_classdev cdev; struct led_classdev cdev;
...@@ -88,12 +88,12 @@ struct mlxcpld_led_priv { ...@@ -88,12 +88,12 @@ struct mlxcpld_led_priv {
#define cdev_to_priv(c) container_of(c, struct mlxcpld_led_priv, cdev) #define cdev_to_priv(c) container_of(c, struct mlxcpld_led_priv, cdev)
/** /**
* mlxcpld_led_profile - system LED profile (defined per system class): * struct mlxcpld_led_profile - system LED profile (defined per system class):
* @offset - offset for LED access in CPLD device * @offset: offset for LED access in CPLD device
* @mask - mask for LED access in CPLD device * @mask: mask for LED access in CPLD device
* @base_color - base color code * @base_color: base color code
* @brightness - default brightness setting (on/off) * @brightness: default brightness setting (on/off)
* @name - LED name * @name: LED name
**/ **/
struct mlxcpld_led_profile { struct mlxcpld_led_profile {
u8 offset; u8 offset;
...@@ -104,12 +104,12 @@ struct mlxcpld_led_profile { ...@@ -104,12 +104,12 @@ struct mlxcpld_led_profile {
}; };
/** /**
* mlxcpld_led_pdata - system LED private data * struct mlxcpld_led_pdata - system LED private data
* @pdev - platform device pointer * @pdev: platform device pointer
* @pled - LED class device instance * @pled: LED class device instance
* @profile - system configuration profile * @profile: system configuration profile
* @num_led_instances - number of LED instances * @num_led_instances: number of LED instances
* @lock - device access lock * @lock: device access lock
**/ **/
struct mlxcpld_led_pdata { struct mlxcpld_led_pdata {
struct platform_device *pdev; struct platform_device *pdev;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment