]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
tpm_tis: Do *not* flush uninitialized work
authorJan Beulich <jbeulich@suse.com>
Wed, 29 May 2024 12:23:25 +0000 (15:23 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 16 Jun 2024 11:47:41 +0000 (13:47 +0200)
commitb54d24eb4a67ba9534f14b014756246ef1f704d1
tree868c96332d83f9f152b4fb4f63c1b0ccd76b3486
parent19e85d939001946671643f4c16e1de8c633a6ce0
tpm_tis: Do *not* flush uninitialized work

commit 0ea00e249ca992adee54dc71a526ee70ef109e40 upstream.

tpm_tis_core_init() may fail before tpm_tis_probe_irq_single() is
called, in which case tpm_tis_remove() unconditionally calling
flush_work() is triggering a warning for .func still being NULL.

Cc: stable@vger.kernel.org # v6.5+
Fixes: 481c2d14627d ("tpm,tpm_tis: Disable interrupts after 1000 unhandled IRQs")
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/char/tpm/tpm_tis_core.c