From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Wed, 16 May 2018 02:04:50 +1000 Subject: [U-Boot] [PATCH v4 03/32] tpm: substitute deprecated uint_t types with their u equivalent In-Reply-To: <20180515095728.16572-4-miquel.raynal@bootlin.com> References: <20180515095728.16572-1-miquel.raynal@bootlin.com> <20180515095728.16572-4-miquel.raynal@bootlin.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 15 May 2018 at 19:56, Miquel Raynal wrote: > Fix following checkpatch.pl issues in TPM-related code: > > CHECK: Prefer kernel type 'u8' over 'uint8_t' > CHECK: Prefer kernel type 'u16' over 'uint16_t' > CHECK: Prefer kernel type 'u32' over 'uint32_t' > > Signed-off-by: Miquel Raynal > --- > cmd/tpm.c | 86 ++++++++--------- > include/tpm.h | 72 +++++++-------- > lib/tpm.c | 290 +++++++++++++++++++++++++++++----------------------------- > 3 files changed, 220 insertions(+), 228 deletions(-) Reviewed-by: Simon Glass