Skip to content
Snippets Groups Projects
Commit 8ebdf9ef authored by Michal Simek's avatar Michal Simek
Browse files

arm64: zynqmp: Use u32 type instead of uint32_t


Warning is reported by checkpatch.

Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
parent 011f0c4f
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ DECLARE_GLOBAL_DATA_PTR; ...@@ -27,7 +27,7 @@ DECLARE_GLOBAL_DATA_PTR;
static xilinx_desc zynqmppl = XILINX_ZYNQMP_DESC; static xilinx_desc zynqmppl = XILINX_ZYNQMP_DESC;
static const struct { static const struct {
uint32_t id; u32 id;
char *name; char *name;
} zynqmp_devices[] = { } zynqmp_devices[] = {
{ {
...@@ -136,7 +136,7 @@ int chip_id(unsigned char id) ...@@ -136,7 +136,7 @@ int chip_id(unsigned char id)
!defined(CONFIG_SPL_BUILD) !defined(CONFIG_SPL_BUILD)
static char *zynqmp_get_silicon_idcode_name(void) static char *zynqmp_get_silicon_idcode_name(void)
{ {
uint32_t i, id; u32 i, id;
id = chip_id(IDCODE); id = chip_id(IDCODE);
for (i = 0; i < ARRAY_SIZE(zynqmp_devices); i++) { for (i = 0; i < ARRAY_SIZE(zynqmp_devices); i++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment