video: backlight: fix pwm data structure description
authorDario Binacchi <dariobin@libero.it>
Sun, 11 Oct 2020 12:28:03 +0000 (14:28 +0200)
committerAnatolij Gustschin <agust@denx.de>
Sun, 18 Oct 2020 13:06:56 +0000 (15:06 +0200)
The description of the 'max_level' field was incorrectly assigned to the
'min_level' field.

Signed-off-by: Dario Binacchi <dariobin@libero.it>
drivers/video/pwm_backlight.c

index 468a570..acfde7b 100644 (file)
@@ -33,7 +33,7 @@
  * @cur_level: Current level for the backlight (index or value)
  * @default_level: Default level for the backlight (index or value)
  * @min_level: Minimum level of the backlight (full off)
- * @min_level: Maximum level of the backlight (full on)
+ * @max_level: Maximum level of the backlight (full on)
  * @enabled: true if backlight is enabled
  */
 struct pwm_backlight_priv {