summaryrefslogtreecommitdiff
path: root/include/bootm.h
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2025-03-05 17:25:02 -0700
committerTom Rini <[email protected]>2025-03-18 13:12:15 -0600
commitc73da92304280b229e3d8dfd565fae5a24fe3ce8 (patch)
treef685170caf64ad12dc5ae5612ed658dbb5527c59 /include/bootm.h
parent1592ff27d502efdc79992f57c07ff0cf81bc9305 (diff)
x86: Drop the unnecessary base_ptr argument to zboot_dump()
This value is include the bootm_info, so drop the unnecessary parameter. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include/bootm.h')
-rw-r--r--include/bootm.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/include/bootm.h b/include/bootm.h
index fe7f80b88a5..c471615b08c 100644
--- a/include/bootm.h
+++ b/include/bootm.h
@@ -342,13 +342,10 @@ const char *zimage_get_kernel_version(struct boot_params *params,
*
* This shows all available information in a zimage that has been loaded.
*
- * @bmi: Bootm information
- * @base_ptr: Pointer to the boot parameters, typically at address
- * DEFAULT_SETUP_BASE
+ * @bmi: Bootm information, with valid base_ptr
* @show_cmdline: true to show the full command line
*/
-void zimage_dump(struct bootm_info *bmi, struct boot_params *base_ptr,
- bool show_cmdline);
+void zimage_dump(struct bootm_info *bmi, bool show_cmdline);
/*
* bootm_boot_start() - Boot an image at the given address