Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 946d7c78 authored by Franck Demathieu's avatar Franck Demathieu Committed by Greg Kroah-Hartman
Browse files

staging: greybus: sdio: Prefer u32 over uint32_t



It fixes the following issue reported by checkpatch.pl:
Prefer kernel type 'u32' over 'uint32_t'

Signed-off-by: default avatarFranck Demathieu <fdemathieu@gmail.com>
Acked-by: default avatarRui Miguel Silva <rmfrfs@gmail.com>
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 414850d9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ struct gb_sdio_host {

static inline bool single_op(struct mmc_command *cmd)
{
	uint32_t opcode = cmd->opcode;
	u32 opcode = cmd->opcode;

	return opcode == MMC_WRITE_BLOCK ||
	       opcode == MMC_READ_SINGLE_BLOCK;