diff options
author | Yang Li <yang.lee@linux.alibaba.com> | 2024-03-03 15:02:08 -0800 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2024-03-03 15:02:55 -0800 |
commit | d49193be636ab2b6e35727541bbdcdc1eab2d676 (patch) | |
tree | 2eca92969c5e89fd6eaf154080aca0ee4581d152 /drivers/input | |
parent | 90cb57a6c5717b83a110c0da720a03ee32ed255e (diff) | |
download | linux-stable-d49193be636ab2b6e35727541bbdcdc1eab2d676.tar.gz linux-stable-d49193be636ab2b6e35727541bbdcdc1eab2d676.tar.bz2 linux-stable-d49193be636ab2b6e35727541bbdcdc1eab2d676.zip |
Input: xilinx_ps2 - fix kernel-doc for xps2_of_probe function
The existing comment block above the xps2_of_probe function
does not conform to the kernel-doc standard. This patch fixes the
documentation to match the expected kernel-doc format, which includes
a structured documentation header with param and return value.
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Reviewed-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/20240301092115.123092-1-yang.lee@linux.alibaba.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/serio/xilinx_ps2.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/input/serio/xilinx_ps2.c b/drivers/input/serio/xilinx_ps2.c index d8f9faf2b529..bb758346a33d 100644 --- a/drivers/input/serio/xilinx_ps2.c +++ b/drivers/input/serio/xilinx_ps2.c @@ -219,8 +219,7 @@ static void sxps2_close(struct serio *pserio) /** * xps2_of_probe - probe method for the PS/2 device. - * @of_dev: pointer to OF device structure - * @match: pointer to the structure used for matching a device + * @ofdev: pointer to OF device structure * * This function probes the PS/2 device in the device tree. * It initializes the driver data structure and the hardware. |