mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-18 06:58:54 +00:00
arm64: zynqmp: Use u32 type instead of uint32_t
Warning is reported by checkpatch. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
011f0c4f7c
commit
8ebdf9efad
1 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ DECLARE_GLOBAL_DATA_PTR;
|
|||
static xilinx_desc zynqmppl = XILINX_ZYNQMP_DESC;
|
||||
|
||||
static const struct {
|
||||
uint32_t id;
|
||||
u32 id;
|
||||
char *name;
|
||||
} zynqmp_devices[] = {
|
||||
{
|
||||
|
@ -136,7 +136,7 @@ int chip_id(unsigned char id)
|
|||
!defined(CONFIG_SPL_BUILD)
|
||||
static char *zynqmp_get_silicon_idcode_name(void)
|
||||
{
|
||||
uint32_t i, id;
|
||||
u32 i, id;
|
||||
|
||||
id = chip_id(IDCODE);
|
||||
for (i = 0; i < ARRAY_SIZE(zynqmp_devices); i++) {
|
||||
|
|
Loading…
Add table
Reference in a new issue