diff options
author | Ajith P V <ajithpv.linux@gmail.com> | 2021-10-29 18:57:00 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-10-30 11:12:17 +0200 |
commit | bdcfac6ab6c9362c45959fdc91c730ecc2c18f7e (patch) | |
tree | e91f2c9e809de548cefb1d18799312a6436dfc3f /drivers/staging | |
parent | 68264c4609ea74fc175d0ccc968ba16b0847ac2a (diff) | |
download | linux-bdcfac6ab6c9362c45959fdc91c730ecc2c18f7e.tar.gz linux-bdcfac6ab6c9362c45959fdc91c730ecc2c18f7e.tar.bz2 linux-bdcfac6ab6c9362c45959fdc91c730ecc2c18f7e.zip |
staging: fieldbus: anybus: reframe comment to avoid warning
host.c file comment produce warning with checkpatch as below:
WARNING: Possible repeated word: 'interrupt'
Reframe the comment into bullet points or steps avoid this warning.
Signed-off-by: Ajith P V <ajithpv.linux@gmail.com>
Link: https://lore.kernel.org/r/20211029132700.8552-1-ajithpv.linux@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/fieldbus/anybuss/host.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/fieldbus/anybuss/host.c b/drivers/staging/fieldbus/anybuss/host.c index 8a75f6642c78..a344410e48fe 100644 --- a/drivers/staging/fieldbus/anybuss/host.c +++ b/drivers/staging/fieldbus/anybuss/host.c @@ -1318,11 +1318,11 @@ anybuss_host_common_probe(struct device *dev, } /* * startup sequence: - * perform dummy IND_AB read to prevent false 'init done' irq + * a) perform dummy IND_AB read to prevent false 'init done' irq * (already done by test_dpram() above) - * release reset - * wait for first interrupt - * interrupt came in: ready to go ! + * b) release reset + * c) wait for first interrupt + * d) interrupt came in: ready to go ! */ reset_deassert(cd); if (!wait_for_completion_timeout(&cd->card_boot, TIMEOUT)) { |