staging: nvec: fix block comment style in nvec_interrupt()

Fix multi-line block comment to use the preferred kernel comment style
with leading asterisks on each line and a trailing */ on a separate
line, as reported by checkpatch.pl.

Signed-off-by: Kibaek Yoo <psykibaek@gmail.com>
Reviewed-by: Ethan Tidmore <ethantidmore06@gmail.com>
Link: https://patch.msgid.link/20260224044946.54022-1-psykibaek@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Kibaek Yoo 2026-02-24 13:49:46 +09:00 committed by Greg Kroah-Hartman
parent f1e7b8929e
commit 29e79c66b3
1 changed files with 4 additions and 2 deletions

View File

@ -659,8 +659,10 @@ static irqreturn_t nvec_interrupt(int irq, void *dev)
nvec_tx_set(nvec);
to_send = nvec->tx->data[0];
nvec->tx->pos = 1;
/* delay ACK due to AP20 HW Bug
do not replace by usleep_range */
/*
* delay ACK due to AP20 HW Bug
* do not replace by usleep_range
*/
udelay(33);
} else if (status == (I2C_SL_IRQ)) {
nvec->rx->data[1] = received;