[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1a35d3bdf6adde4f21e7c1401f3a2aba64367eb0.camel@perches.com>
Date: Sat, 25 Jun 2022 02:37:54 -0700
From: Joe Perches <joe@...ches.com>
To: Gabriel Viso Carrera <gabriel@...soc.com>, andreas.noever@...il.com
Cc: linux-usb@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 3/3] staging: Thunderbolt: ctl.c: Fixed comment coding
style issues
On Sat, 2022-06-25 at 18:49 +1000, Gabriel Viso Carrera wrote:
> Fixed a couple of comment aligment & formatting coding style issues.
trivia:
> diff --git a/drivers/thunderbolt/ctl.c b/drivers/thunderbolt/ctl.c
[]
> @@ -402,11 +403,11 @@ static bool tb_ctl_handle_event(struct tb_ctl *ctl, enum tb_cfg_pkg_type type,
> static void tb_ctl_rx_submit(struct ctl_pkg *pkg)
> {
> tb_ring_rx(pkg->ctl->rx, &pkg->frame); /*
> - * We ignore failures during stop.
> - * All rx packets are referenced
> - * from ctl->rx_packets, so we do
> - * not loose them.
> - */
> + * We ignore failures during stop.
> + * All rx packets are referenced
> + * from ctl->rx_packets, so we do
> + * not loose them.
> + */
I'd indent this only 1 level and put it before the call
(and fix the loose/lose typo)
{
/* We ignore failures during stop.
* All rx packets are referenced from ctl->rx_packets,
* so we do not lose them.
*/
tb_ring_rx(pkg->ctl->rx, &pkg->frame);
}
Powered by blists - more mailing lists