Re: [PATCH v1 1/3] firmware: coreboot: support for parsing SMM related informations from coreboot tables

From: Brian Norris
Date: Mon Jun 16 2025 - 14:17:20 EST


On Sat, Jun 14, 2025 at 02:53:18PM +0200, Michal Gorlas wrote:
> On Thu, Jun 12, 2025 at 03:37:40PM -0700, Brian Norris wrote:
> > > @@ -112,8 +122,8 @@ void coreboot_driver_unregister(struct coreboot_driver *driver);
> > > * boilerplate. Each module may only use this macro once, and
> > > * calling it replaces module_init() and module_exit()
> > > */
> > > -#define module_coreboot_driver(__coreboot_driver) \
> > > +#define module_coreboot_driver(__coreboot_driver) \
> > > module_driver(__coreboot_driver, coreboot_driver_register, \
> > > - coreboot_driver_unregister)
> > > + coreboot_driver_unregister)
> >
> > You're making arbitrary whitespace changes in this hunk. Try to avoid
> > that, please.
> >
>
> Sure, will do. It came from a style warning when running
> scripts/checkpatch.pl. I thought it could be useful to fix it on the
> same go.

That's odd, I don't see any such warning. Anyway, typically I'd expect
such things not to be lumped together under the "separate your changes"
guidance of Documentation/process/submitting-patches.rst (if they're
worth changing at all), although that may not be a hard and fast rule.

Brian