tpm: Fix the type of the return value in calc_tpm2_event_size()
authorYue Haibing <yuehaibing@huawei.com>
Tue, 23 Apr 2019 13:05:18 +0000 (16:05 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 27 Apr 2019 07:36:40 +0000 (09:36 +0200)
commit1c36862e8be8e45094024e7384a7b441779f34cb
tree6d1cda080914d5264f7ae185058558cb84bb5532
parent18af9b7b91380825ac398ff3b94fac4e0621c5cc
tpm: Fix the type of the return value in calc_tpm2_event_size()

commit b9d0a85d6b2e76630cfd4c475ee3af4109bfd87a upstream

calc_tpm2_event_size() has an invalid signature because
it returns a 'size_t' where as its signature says that
it returns 'int'.

Cc: <stable@vger.kernel.org>
Fixes: 4d23cc323cdb ("tpm: add securityfs support for TPM 2.0 firmware event log")
Suggested-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Signed-off-by: Yue Haibing <yuehaibing@huawei.com>
Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Signed-off-by: James Morris <james.morris@microsoft.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/char/tpm/eventlog/tpm2.c