mirror of https://github.com/torvalds/linux.git
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:
parent
f1e7b8929e
commit
29e79c66b3
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue