Re: [PATCH v2] staging: atomisp: cleanup parenthesis alignment in pci.
From: Andy Shevchenko
Date: Sat Apr 04 2026 - 15:49:17 EST
On Fri, Apr 03, 2026 at 10:21:01PM +0200, Joshua Crofts wrote:
> Cleanup parenthesis alignment as per checkpatch.pl in the
> pci/ directory.
Use prefix in the subject as "media: atomisp:".
...
> hmm_store(ddr_addr,
> - (void *)(data->address),
> - (size_t)data->size);
> + (void *)(data->address),
> + (size_t)data->size);
In cases like this, try to use the room on the previous lines:
hmm_store(ddr_addr, (void *)(data->address), (size_t)data->size);
is perfectly fits 80 characters.
--
With Best Regards,
Andy Shevchenko