diff options
author | Damien Le Moal <dlemoal@kernel.org> | 2024-09-07 10:56:32 +0900 |
---|---|---|
committer | Damien Le Moal <dlemoal@kernel.org> | 2024-09-07 11:02:52 +0900 |
commit | d647bdf4d080208b71a205ec19a1c9f18ca83f00 (patch) | |
tree | 4e48fc339aca6f6324e71e4e043620dbee996118 | |
parent | 602bcf212637633d537ee74bf39c6bc5722efb9b (diff) | |
download | linux-stable-d647bdf4d080208b71a205ec19a1c9f18ca83f00.tar.gz linux-stable-d647bdf4d080208b71a205ec19a1c9f18ca83f00.tar.bz2 linux-stable-d647bdf4d080208b71a205ec19a1c9f18ca83f00.zip |
ata: libata: Fix W=1 compilation warning
Commit c494708d1f68 ("ata: libata: Cleanup libata-transport")
inadvertently changed the name of the link argument to ata_link in the
kdoc description of ata_tlink_add(), causing warnings to be issue when
compiling with W=1:
drivers/ata/libata-transport.c:690: warning: Function parameter or
struct member 'link' not described in 'ata_tlink_add'
drivers/ata/libata-transport.c:690: warning: Excess function parameter
'ata_link' description in 'ata_tlink_add'
Change the kdoc argument name to "link" to avoid these warnings.
Fixes: c494708d1f68 ("ata: libata: Cleanup libata-transport")
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
-rw-r--r-- | drivers/ata/libata-transport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/libata-transport.c b/drivers/ata/libata-transport.c index d9a1888eac34..e898be49df6b 100644 --- a/drivers/ata/libata-transport.c +++ b/drivers/ata/libata-transport.c @@ -679,7 +679,7 @@ void ata_tlink_delete(struct ata_link *link) /** * ata_tlink_add -- initialize an ATA link transport device - * @ata_link: struct ata_link owning the link transport device to initialize + * @link: struct ata_link owning the link transport device to initialize * * Initialize an ATA link transport device for sysfs. It will be added in the * device tree below the ATA port it belongs to. |