Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Input: drv2667 - fix formatting and add missing member docs

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

drivers/input/misc/drv2667.c:109: warning: Function parameter or member 'input_dev' not described in 'drv2667_data'
drivers/input/misc/drv2667.c:109: warning: Function parameter or member 'client' not described in 'drv2667_data'
drivers/input/misc/drv2667.c:109: warning: Function parameter or member 'regmap' not described in 'drv2667_data'
drivers/input/misc/drv2667.c:109: warning: Function parameter or member 'work' not described in 'drv2667_data'
drivers/input/misc/drv2667.c:109: warning: Function parameter or member 'regulator' not described in 'drv2667_data'
drivers/input/misc/drv2667.c:109: warning: Function parameter or member 'page' not described in 'drv2667_data'
drivers/input/misc/drv2667.c:109: warning: Function parameter or member 'magnitude' not described in 'drv2667_data'
drivers/input/misc/drv2667.c:109: warning: Function parameter or member 'frequency' not described in 'drv2667_data'

Signed-off-by: Lee Jones <lee.jones@linaro.org>
Link: https://lore.kernel.org/r/20201104162427.2984742-19-lee.jones@linaro.org
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

Lee Jones and committed by
Dmitry Torokhov
17627111 6e9c6fcb

+8 -6
+8 -6
drivers/input/misc/drv2667.c
··· 90 90 91 91 /** 92 92 * struct drv2667_data - 93 - * @input_dev - Pointer to the input device 94 - * @client - Pointer to the I2C client 95 - * @regmap - Register map of the device 96 - * @work - Work item used to off load the enable/disable of the vibration 97 - * @regulator - Pointer to the regulator for the IC 98 - * @magnitude - Magnitude of the vibration event 93 + * @input_dev: Pointer to the input device 94 + * @client: Pointer to the I2C client 95 + * @regmap: Register map of the device 96 + * @work: Work item used to off load the enable/disable of the vibration 97 + * @regulator: Pointer to the regulator for the IC 98 + * @page: Page number 99 + * @magnitude: Magnitude of the vibration event 100 + * @frequency: Frequency of the vibration event 99 101 **/ 100 102 struct drv2667_data { 101 103 struct input_dev *input_dev;