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

arm: zynq: Use unsigned type with comparison with ARRAY_SIZE


Sparse is return warning about this:
arch/arm/mach-zynq/slcr.c: In function 'zynq_slcr_get_mio_pin_status':
arch/arm/mach-zynq/slcr.c:185:16: warning: comparison between signed and
unsigned integer expressions [-Wsign-compare]
  for (i = 0; i < ARRAY_SIZE(mio_periphs); i++) {
                ^

Signed-off-by: default avatarMichal Simek <michal.simek@xilinx.com>
parent 460b05d9
No related branches found
No related tags found
No related merge requests found
......@@ -179,8 +179,9 @@ u32 zynq_slcr_get_idcode(void)
int zynq_slcr_get_mio_pin_status(const char *periph)
{
const struct zynq_slcr_mio_get_status *mio_ptr;
int val, i, j;
int val, j;
int mio = 0;
u32 i;
for (i = 0; i < ARRAY_SIZE(mio_periphs); i++) {
if (strcmp(periph, mio_periphs[i].peri_name) == 0) {
......
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