All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers: tpm2: update reset gpio semantics
@ 2021-05-26 19:57 Jorge Ramirez-Ortiz
  2021-05-27  7:15 ` Michal Simek
  2021-05-27 13:44 ` Simon Glass
  0 siblings, 2 replies; 8+ messages in thread
From: Jorge Ramirez-Ortiz @ 2021-05-26 19:57 UTC (permalink / raw)
  To: jorge, sjg, bruno.thomsen, michal.simek; +Cc: u-boot

Use the more generic reset-gpios propery name.

Signed-off-by: Jorge Ramirez-Ortiz <jorge@foundries.io>
---
 doc/device-tree-bindings/tpm2/tis-tpm2-spi.txt | 2 +-
 drivers/tpm/tpm2_tis_spi.c                     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/device-tree-bindings/tpm2/tis-tpm2-spi.txt b/doc/device-tree-bindings/tpm2/tis-tpm2-spi.txt
index 3a2ee4bd17..bbcd12950f 100644
--- a/doc/device-tree-bindings/tpm2/tis-tpm2-spi.txt
+++ b/doc/device-tree-bindings/tpm2/tis-tpm2-spi.txt
@@ -6,7 +6,7 @@ Required properties:
 - reg			: SPI Chip select
 
 Optional properties:
-- gpio-reset		: Reset GPIO (if not connected to the SoC reset line)
+- reset-gpios		: Reset GPIO (if not connected to the SoC reset line)
 - spi-max-frequency	: See spi-bus.txt
 
 Example:
diff --git a/drivers/tpm/tpm2_tis_spi.c b/drivers/tpm/tpm2_tis_spi.c
index 4b33ac8fd3..94ac52d9ce 100644
--- a/drivers/tpm/tpm2_tis_spi.c
+++ b/drivers/tpm/tpm2_tis_spi.c
@@ -589,7 +589,7 @@ static int tpm_tis_spi_probe(struct udevice *dev)
 	if (CONFIG_IS_ENABLED(DM_GPIO)) {
 		struct gpio_desc reset_gpio;
 
-		ret = gpio_request_by_name(dev, "gpio-reset", 0,
+		ret = gpio_request_by_name(dev, "reset-gpios", 0,
 					   &reset_gpio, GPIOD_IS_OUT);
 		if (ret) {
 			log(LOGC_NONE, LOGL_NOTICE, "%s: missing reset GPIO\n",
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-05-31 13:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-26 19:57 [PATCH] drivers: tpm2: update reset gpio semantics Jorge Ramirez-Ortiz
2021-05-27  7:15 ` Michal Simek
2021-05-28 16:18   ` Bruno Thomsen
2021-05-31  7:05     ` Michal Simek
2021-05-31 13:17       ` Jorge Ramirez-Ortiz, Foundries
2021-05-31 13:49         ` Michal Simek
2021-05-27 13:44 ` Simon Glass
2021-05-28  6:26   ` Jorge Ramirez-Ortiz, Gmail

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.