From mboxrd@z Thu Jan 1 00:00:00 1970 From: Miquel Raynal Date: Thu, 19 Jul 2018 22:35:06 +0200 Subject: [U-Boot] [PATCH v2 1/7] tpm: fix typo in kernel doc In-Reply-To: <20180719203512.346-1-miquel.raynal@bootlin.com> References: <20180719203512.346-1-miquel.raynal@bootlin.com> Message-ID: <20180719203512.346-2-miquel.raynal@bootlin.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The udevice given to the open() function of course must be opened, not closed. Signed-off-by: Miquel Raynal Reviewed-by: Simon Glass --- include/tpm-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tpm-common.h b/include/tpm-common.h index 734c2c9d53..68bf8fd627 100644 --- a/include/tpm-common.h +++ b/include/tpm-common.h @@ -71,7 +71,7 @@ struct tpm_ops { * After all commands have been completed the caller should call * close(). * - * @dev: Device to close + * @dev: Device to open * @return 0 ok OK, -ve on error */ int (*open)(struct udevice *dev); -- 2.14.1