Re: [PATCH net-next v17 02/13] rtase: Implement the .ndo_open function
From: Simon Horman
Date: Wed May 08 2024 - 04:36:57 EST
On Mon, May 06, 2024 at 02:45:11AM +0000, Justin Lai wrote:
..
> > > +
> > > + /* request other interrupts to handle multiqueue */
> > > + for (i = 1; i < tp->int_nums; i++) {
> > > + ivec = &tp->int_vector[i];
> > > + snprintf(ivec->name, sizeof(ivec->name),
> > > + "%s_int%i", tp->dev->name, i);
> >
> > nit: This line could trivially be split into two lines,
> > each less than 80 columns wide.
> >
> I will check if there are other similar issues and make corrections.
Thanks.
FWIIW, checkpatch.pl --max-line-length=80 can be helpful here.