diff options
author | Lee Jones <[email protected]> | 2020-06-23 12:41:34 +0100 |
---|---|---|
committer | Lee Jones <[email protected]> | 2020-07-06 08:11:41 +0100 |
commit | 0e0428be20fac07989bdccc4c2836cdfe2ff5ec4 (patch) | |
tree | b50972c77e48f91225e5ed321a1ad7588094e5ea | |
parent | 4160ebacd3579651c5fd9cb1d27dc2205adb13d7 (diff) |
backlight: ili922x: Add missing kerneldoc descriptions for CHECK_FREQ_REG() args
Kerneldoc syntax is used, but not complete. Descriptions required.
Prevents warnings like:
drivers/video/backlight/ili922x.c:116: warning: Function parameter or member 's' not described in 'CHECK_FREQ_REG'
drivers/video/backlight/ili922x.c:116: warning: Function parameter or member 'x' not described in 'CHECK_FREQ_REG'
Cc: Bartlomiej Zolnierkiewicz <[email protected]>
Cc: Software Engineering <[email protected]>
Signed-off-by: Lee Jones <[email protected]>
Reviewed-by: Daniel Thompson <[email protected]>
Reviewed-by: Sam Ravnborg <[email protected]>
Signed-off-by: Lee Jones <[email protected]>
-rw-r--r-- | drivers/video/backlight/ili922x.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/backlight/ili922x.c b/drivers/video/backlight/ili922x.c index 9c5aa3fbb284..5914147b2c4b 100644 --- a/drivers/video/backlight/ili922x.c +++ b/drivers/video/backlight/ili922x.c @@ -107,6 +107,8 @@ * lower frequency when the registers are read/written. * The macro sets the frequency in the spi_transfer structure if * the frequency exceeds the maximum value. + * @s: pointer to an SPI device + * @x: pointer to the read/write buffer pair */ #define CHECK_FREQ_REG(s, x) \ do { \ |