tpm: Remove unintentional dump_stack() call
authorJarkko Sakkinen <jarkko@kernel.org>
Mon, 1 Mar 2021 21:24:16 +0000 (23:24 +0200)
committerJarkko Sakkinen <jarkko@kernel.org>
Wed, 3 Mar 2021 15:43:52 +0000 (17:43 +0200)
Somewhere along the line, probably during a rebase, an unintentional
dump_stack() got included. Revert this change.

Reported-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
Fixes: 90cba8d20f8b ("tpm/ppi: Constify static struct attribute_group")
Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
drivers/char/tpm/tpm-chip.c

index 19e23fc..ddaeceb 100644 (file)
@@ -278,8 +278,6 @@ static void tpm_devs_release(struct device *dev)
 {
        struct tpm_chip *chip = container_of(dev, struct tpm_chip, devs);
 
-       dump_stack();
-
        /* release the master device reference */
        put_device(&chip->dev);
 }