diff options
| author | Lee Jones <[email protected]> | 2021-03-18 08:51:37 +0000 |
|---|---|---|
| committer | Jens Axboe <[email protected]> | 2021-03-30 20:21:25 -0600 |
| commit | 91c50d8a1f9a28b3725154bc0046d8ac4bf11796 (patch) | |
| tree | 881e32abc51c1a62a6664be357ebc5c756db7f9f | |
| parent | ffa137cb8d17902a44bd473d1ff56485dbb19b7c (diff) | |
ata: pata_sil680: Add some missing function parameter docs
Fixes the following W=1 kernel build warning(s):
drivers/ata/pata_sil680.c:68: warning: Function parameter or member 'adev' not described in 'sil680_seldev'
drivers/ata/pata_sil680.c:254: warning: Function parameter or member 'try_mmio' not described in 'sil680_init_chip'
Cc: Jens Axboe <[email protected]>
Cc: Andre Hedrick <[email protected]>
Cc: Red Hat <[email protected]>
Cc: [email protected]
Signed-off-by: Lee Jones <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jens Axboe <[email protected]>
| -rw-r--r-- | drivers/ata/pata_sil680.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ata/pata_sil680.c b/drivers/ata/pata_sil680.c index 7ab9aea3b630..43215a664b96 100644 --- a/drivers/ata/pata_sil680.c +++ b/drivers/ata/pata_sil680.c @@ -57,6 +57,7 @@ static unsigned long sil680_selreg(struct ata_port *ap, int r) /** * sil680_seldev - return register base * @ap: ATA interface + * @adev: ATA device * @r: config offset * * Turn a config register offset into the right address in PCI space @@ -244,6 +245,7 @@ static struct ata_port_operations sil680_port_ops = { /** * sil680_init_chip - chip setup * @pdev: PCI device + * @try_mmio: Indicates to caller whether MMIO should be attempted * * Perform all the chip setup which must be done both when the device * is powered up on boot and when we resume in case we resumed from RAM. |