perf: arm-cmn: Fix conversion specifiers for node type
authorWill Deacon <will@kernel.org>
Thu, 1 Oct 2020 10:57:01 +0000 (11:57 +0100)
committerWill Deacon <will@kernel.org>
Thu, 1 Oct 2020 21:30:07 +0000 (22:30 +0100)
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>
drivers/perf/arm-cmn.c

index cd4da4c..a76ff59 100644 (file)
@@ -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;
                        }
                }