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: Franck Demathieu <fdemathieu@gmail.com> Acked-by: Rui Miguel Silva <rmfrfs@gmail.com> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
414850d9ce
commit
946d7c78a0
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ struct gb_sdio_host {
|
||||||
|
|
||||||
static inline bool single_op(struct mmc_command *cmd)
|
static inline bool single_op(struct mmc_command *cmd)
|
||||||
{
|
{
|
||||||
uint32_t opcode = cmd->opcode;
|
u32 opcode = cmd->opcode;
|
||||||
|
|
||||||
return opcode == MMC_WRITE_BLOCK ||
|
return opcode == MMC_WRITE_BLOCK ||
|
||||||
opcode == MMC_READ_SINGLE_BLOCK;
|
opcode == MMC_READ_SINGLE_BLOCK;
|
||||||
|
|
Loading…
Add table
Reference in a new issue