diff options
| author | Nathan Chancellor <nathan@kernel.org> | 2026-03-25 19:19:26 -0700 |
|---|---|---|
| committer | Will Deacon <will@kernel.org> | 2026-03-26 15:25:21 +0000 |
| commit | 47f06ebbe8dad695002e5d9a2ab436411f88e985 (patch) | |
| tree | 58a0de6a87c8521253910a5bd9973d8fb29a02a4 /rust/kernel/ptr/git@git.tavy.me:linux.git | |
| parent | d49802b6617b96f55d4b61fed81f4cc43858ed3f (diff) | |
perf/arm-cmn: Fix resource_size_t printk specifier in arm_cmn_init_dtc()
When building for 32-bit ARM, there is a warning when using the %llx
specifier to print a resource_size_t variable:
drivers/perf/arm-cmn.c: In function 'arm_cmn_init_dtc':
drivers/perf/arm-cmn.c:2149:73: error: format '%llx' expects argument of type 'long long unsigned int', but argument 4 has type 'resource_size_t' {aka 'unsigned int'} [-Werror=format=]
2149 | "Failed to request DTC region 0x%llx\n", base);
| ~~~^ ~~~~
| | |
| | resource_size_t {aka unsigned int}
| long long unsigned int
| %x
Use the %pa specifier to handle the possible sizes of phys_addr_t
properly. This requires passing the variable by reference.
Fixes: 5394396ff548 ("perf/arm-cmn: Stop claiming entire iomem region")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Reviewed-by: Robin murphy <robin.murphy@arm.com>
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'rust/kernel/ptr/git@git.tavy.me:linux.git')
0 files changed, 0 insertions, 0 deletions
