* [PATCH] staging: nvec: fix block comment style
@ 2026-04-04 6:37 Paarth Mahadik
2026-04-26 19:01 ` Greg KH
0 siblings, 1 reply; 7+ messages in thread
From: Paarth Mahadik @ 2026-04-04 6:37 UTC (permalink / raw)
To: marvin24
Cc: gregkh, ac100, linux-tegra, linux-staging, linux-kernel,
Paarth Mahadik
Block comments should use * on subsequent lines and
have the closing */ on a separate line.
Signed-off-by: Paarth Mahadik <paarth.mahadik@gmail.com>
---
drivers/staging/nvec/nvec.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c
index e9af66a08448..0e655f79ea4a 100644
--- a/drivers/staging/nvec/nvec.c
+++ b/drivers/staging/nvec/nvec.c
@@ -660,7 +660,8 @@ static irqreturn_t nvec_interrupt(int irq, void *dev)
to_send = nvec->tx->data[0];
nvec->tx->pos = 1;
/* delay ACK due to AP20 HW Bug
- do not replace by usleep_range */
+ * do not replace by usleep_range
+ */
udelay(33);
} else if (status == (I2C_SL_IRQ)) {
nvec->rx->data[1] = received;
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH] staging: nvec: fix block comment style
2026-04-04 6:37 [PATCH] staging: nvec: fix block comment style Paarth Mahadik
@ 2026-04-26 19:01 ` Greg KH
0 siblings, 0 replies; 7+ messages in thread
From: Greg KH @ 2026-04-26 19:01 UTC (permalink / raw)
To: Paarth Mahadik; +Cc: marvin24, ac100, linux-tegra, linux-staging, linux-kernel
On Sat, Apr 04, 2026 at 12:07:47PM +0530, Paarth Mahadik wrote:
> Block comments should use * on subsequent lines and
> have the closing */ on a separate line.
>
> Signed-off-by: Paarth Mahadik <paarth.mahadik@gmail.com>
> ---
> drivers/staging/nvec/nvec.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c
> index e9af66a08448..0e655f79ea4a 100644
> --- a/drivers/staging/nvec/nvec.c
> +++ b/drivers/staging/nvec/nvec.c
> @@ -660,7 +660,8 @@ static irqreturn_t nvec_interrupt(int irq, void *dev)
> to_send = nvec->tx->data[0];
> nvec->tx->pos = 1;
> /* delay ACK due to AP20 HW Bug
> - do not replace by usleep_range */
> + * do not replace by usleep_range
> + */
> udelay(33);
> } else if (status == (I2C_SL_IRQ)) {
> nvec->rx->data[1] = received;
> --
> 2.53.0
>
>
Hi,
This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him
a patch that has triggered this response. He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created. Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.
You are receiving this message because of the following common error(s)
as indicated below:
- Your patch did not apply to any known trees that Greg is in control
of. Possibly this is because you made it against Linus's tree, not
the linux-next tree, which is where all of the development for the
next version of the kernel is at. Please refresh your patch against
the linux-next tree, or even better yet, the development tree
specified in the MAINTAINERS file for the subsystem you are submitting
a patch for, and resend it.
If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.
thanks,
greg k-h's patch email bot
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] staging: nvec: fix block comment style
@ 2026-03-04 5:47 Avon-Hermit
2026-03-06 5:01 ` Avon Hermit
0 siblings, 1 reply; 7+ messages in thread
From: Avon-Hermit @ 2026-03-04 5:47 UTC (permalink / raw)
To: Marc Dietrich
Cc: Greg Kroah-Hartman, ac100, linux-tegra, linux-staging,
linux-kernel, Avon-Hermit
Convert a block comment describing the AP20 hardware bug workaround
to the preferred kernel block comment format.
This change only adjusts the comment style and does not modify the
behavior of the driver.
Signed-off-by: Avon-Hermit <avon.hermit@gmail.com>
---
drivers/staging/nvec/nvec.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c
index e9af66a08448..736f11942174 100644
--- a/drivers/staging/nvec/nvec.c
+++ b/drivers/staging/nvec/nvec.c
@@ -659,8 +659,9 @@ 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;
--
2.47.3
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH] staging: nvec: fix block comment style
2026-03-04 5:47 Avon-Hermit
@ 2026-03-06 5:01 ` Avon Hermit
0 siblings, 0 replies; 7+ messages in thread
From: Avon Hermit @ 2026-03-06 5:01 UTC (permalink / raw)
To: Marc Dietrich
Cc: Greg Kroah-Hartman, ac100, linux-tegra, linux-staging,
linux-kernel
Hi,
Sorry, I didn't notice the earlier patch.
Please ignore this one.
Thanks,
Avon
On Wed, Mar 04, 2026 at 01:47:20PM +0800, Avon-Hermit wrote:
> Convert a block comment describing the AP20 hardware bug workaround
> to the preferred kernel block comment format.
>
> This change only adjusts the comment style and does not modify the
> behavior of the driver.
>
> Signed-off-by: Avon-Hermit <avon.hermit@gmail.com>
> ---
> drivers/staging/nvec/nvec.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c
> index e9af66a08448..736f11942174 100644
> --- a/drivers/staging/nvec/nvec.c
> +++ b/drivers/staging/nvec/nvec.c
> @@ -659,8 +659,9 @@ 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;
> --
> 2.47.3
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] staging: nvec: fix block comment style
@ 2026-03-02 1:40 Afkari Zergaw
2026-03-09 16:28 ` Greg KH
0 siblings, 1 reply; 7+ messages in thread
From: Afkari Zergaw @ 2026-03-02 1:40 UTC (permalink / raw)
To: marvin24, gregkh; +Cc: linux-staging, linux-tegra, linux-kernel, Afkari Zergaw
Convert a block comment in nvec.c to follow the kernel block
comment style where subsequent lines start with '*'.
Signed-off-by: Afkari Zergaw <afkarizergaw12@gmail.com>
---
drivers/staging/nvec/nvec.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c
index e9af66a08448..0e655f79ea4a 100644
--- a/drivers/staging/nvec/nvec.c
+++ b/drivers/staging/nvec/nvec.c
@@ -660,7 +660,8 @@ static irqreturn_t nvec_interrupt(int irq, void *dev)
to_send = nvec->tx->data[0];
nvec->tx->pos = 1;
/* delay ACK due to AP20 HW Bug
- do not replace by usleep_range */
+ * do not replace by usleep_range
+ */
udelay(33);
} else if (status == (I2C_SL_IRQ)) {
nvec->rx->data[1] = received;
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH] staging: nvec: fix block comment style
2026-03-02 1:40 Afkari Zergaw
@ 2026-03-09 16:28 ` Greg KH
0 siblings, 0 replies; 7+ messages in thread
From: Greg KH @ 2026-03-09 16:28 UTC (permalink / raw)
To: Afkari Zergaw; +Cc: marvin24, linux-staging, linux-tegra, linux-kernel
On Mon, Mar 02, 2026 at 01:40:15AM +0000, Afkari Zergaw wrote:
> Convert a block comment in nvec.c to follow the kernel block
> comment style where subsequent lines start with '*'.
>
> Signed-off-by: Afkari Zergaw <afkarizergaw12@gmail.com>
> ---
> drivers/staging/nvec/nvec.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c
> index e9af66a08448..0e655f79ea4a 100644
> --- a/drivers/staging/nvec/nvec.c
> +++ b/drivers/staging/nvec/nvec.c
> @@ -660,7 +660,8 @@ static irqreturn_t nvec_interrupt(int irq, void *dev)
> to_send = nvec->tx->data[0];
> nvec->tx->pos = 1;
> /* delay ACK due to AP20 HW Bug
> - do not replace by usleep_range */
> + * do not replace by usleep_range
> + */
> udelay(33);
> } else if (status == (I2C_SL_IRQ)) {
> nvec->rx->data[1] = received;
> --
> 2.43.0
>
>
Does not apply to my tree :(
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] staging: nvec: fix block comment style
@ 2026-02-07 18:25 claude-bot
0 siblings, 0 replies; 7+ messages in thread
From: claude-bot @ 2026-02-07 18:25 UTC (permalink / raw)
To: Marc Dietrich; +Cc: Greg Kroah-Hartman, linux-staging, linux-kernel
Fix multi-line block comment to follow kernel coding style.
Block comments should use * on subsequent lines and have the
trailing */ on a separate line.
Signed-off-by: claude-bot <andrz2-claude@proton.me>
---
drivers/staging/nvec/nvec.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c
index e9af66a08..62013019a 100644
--- a/drivers/staging/nvec/nvec.c
+++ b/drivers/staging/nvec/nvec.c
@@ -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;
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-04-27 3:50 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-04 6:37 [PATCH] staging: nvec: fix block comment style Paarth Mahadik
2026-04-26 19:01 ` Greg KH
-- strict thread matches above, loose matches on Subject: below --
2026-03-04 5:47 Avon-Hermit
2026-03-06 5:01 ` Avon Hermit
2026-03-02 1:40 Afkari Zergaw
2026-03-09 16:28 ` Greg KH
2026-02-07 18:25 claude-bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox