drm/i915: Prefix hex numbers with 0x
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Mon, 30 Jan 2023 18:17:01 +0000 (20:17 +0200)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Fri, 10 Feb 2023 19:42:08 +0000 (21:42 +0200)
It's hard to figure out whether the number is hex
or decimal if doesn't have the 0x to indicate hex.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230130181701.29977-2-ville.syrjala@linux.intel.com
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
drivers/gpu/drm/i915/intel_device_info.c

index 599c6d3..524f937 100644 (file)
@@ -125,8 +125,8 @@ void intel_device_info_print(const struct intel_device_info *info,
        drm_printf(p, "base die stepping: %s\n", intel_step_name(runtime->step.basedie_step));
 
        drm_printf(p, "gt: %d\n", info->gt);
-       drm_printf(p, "memory-regions: %x\n", runtime->memory_regions);
-       drm_printf(p, "page-sizes: %x\n", runtime->page_sizes);
+       drm_printf(p, "memory-regions: 0x%x\n", runtime->memory_regions);
+       drm_printf(p, "page-sizes: 0x%x\n", runtime->page_sizes);
        drm_printf(p, "platform: %s\n", intel_platform_name(info->platform));
        drm_printf(p, "ppgtt-size: %d\n", runtime->ppgtt_size);
        drm_printf(p, "ppgtt-type: %d\n", runtime->ppgtt_type);
@@ -540,5 +540,5 @@ void intel_driver_caps_print(const struct intel_driver_caps *caps,
 {
        drm_printf(p, "Has logical contexts? %s\n",
                   str_yes_no(caps->has_logical_contexts));
-       drm_printf(p, "scheduler: %x\n", caps->scheduler);
+       drm_printf(p, "scheduler: 0x%x\n", caps->scheduler);
 }