Re: [PATCH 02/11] acpi/ghes: add a firmware file with HEST address

From: Mauro Carvalho Chehab
Date: Thu Jan 23 2025 - 06:48:10 EST


Em Thu, 23 Jan 2025 10:02:17 +0000
Jonathan Cameron <Jonathan.Cameron@xxxxxxxxxx> escreveu:

> > ---
> >
> > Change from v8:
> > - hest_addr_lr is now pointing to the error source size and data.
> >
> > Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@xxxxxxxxxx>
> Bonus. I guess you really like this patch :)

There is something wrong here with git rebase - maybe related to
.git/hooks/pre-commit running checkpatch: every time I do a rebase,
it adds my SOB at the end of description, if not there already.
Not a problem for normal patches, but when the patch has a version
history, it ends placing such duplicated SOBs. That happens even
using --no-signoff and with:

[format]
signOff = false

at git config. No idea how to fix it.

Thanks,
Mauro

---

This is the pre-commit hook:

#!/bin/sh
#
#
TMP=$(mktemp)

git diff --cached HEAD >$TMP

$PWD/scripts/checkpatch.pl --no-signoff -q $TMP >&2
ERR=$?

rm $TMP

exit $ERR