projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d53a6ad
)
tpm: Remove unintentional dump_stack() call
author
Jarkko Sakkinen
<jarkko@kernel.org>
Mon, 1 Mar 2021 21:24:16 +0000
(23:24 +0200)
committer
Jarkko 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
patch
|
blob
|
history
diff --git
a/drivers/char/tpm/tpm-chip.c
b/drivers/char/tpm/tpm-chip.c
index
19e23fc
..
ddaeceb
100644
(file)
--- a/
drivers/char/tpm/tpm-chip.c
+++ b/
drivers/char/tpm/tpm-chip.c
@@
-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);
}