diff options
Diffstat (limited to 'include/backlight.h')
-rw-r--r-- | include/backlight.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/backlight.h b/include/backlight.h index b44da50bc30..c8418828d17 100644 --- a/include/backlight.h +++ b/include/backlight.h @@ -41,7 +41,7 @@ struct backlight_ops { * backlight_enable() - Enable a backlight * * @dev: Backlight device to enable - * @return 0 if OK, -ve on error + * Return: 0 if OK, -ve on error */ int backlight_enable(struct udevice *dev); @@ -50,7 +50,7 @@ int backlight_enable(struct udevice *dev); * * @dev: Backlight device to update * @percent: Brightness value (0 to 100, or BACKLIGHT_... value) - * @return 0 if OK, -ve on error + * Return: 0 if OK, -ve on error */ int backlight_set_brightness(struct udevice *dev, int percent); |