forked from Minki/linux
perf: arm-cmn: Fix conversion specifiers for node type
The node type field is an enum type, so print it as a 32-bit quantity rather than as an unsigned short. Link: https://lore.kernel.org/r/202009302350.QIzfkx62-lkp@intel.com Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Will Deacon <will@kernel.org>
This commit is contained in:
parent
d9ef632fab
commit
887e2cff0f
@ -1324,7 +1324,7 @@ static void arm_cmn_init_node_info(struct arm_cmn *cmn, u32 offset, struct arm_c
|
||||
else
|
||||
level = 2;
|
||||
|
||||
dev_dbg(cmn->dev, "node%*c%#06hx%*ctype:%-#6hx id:%-4hd off:%#x\n",
|
||||
dev_dbg(cmn->dev, "node%*c%#06hx%*ctype:%-#6x id:%-4hd off:%#x\n",
|
||||
(level * 2) + 1, ' ', node->id, 5 - (level * 2), ' ',
|
||||
node->type, node->logid, offset);
|
||||
}
|
||||
@ -1430,7 +1430,7 @@ static int arm_cmn_discover(struct arm_cmn *cmn, unsigned int rgn_offset)
|
||||
break;
|
||||
/* Something has gone horribly wrong */
|
||||
default:
|
||||
dev_err(cmn->dev, "invalid device node type: 0x%hx\n", dn->type);
|
||||
dev_err(cmn->dev, "invalid device node type: 0x%x\n", dn->type);
|
||||
return -ENODEV;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user