Skip to content

Commit 75439c7

Browse files
dgarskedanielinux
authored andcommitted
Removed the redundant "FDT: Setting bootargs" print
1 parent f2fe1f4 commit 75439c7

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

hal/versal.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,6 @@ int hal_dts_fixup(void* dts_addr)
12841284

12851285
if (off >= 0) {
12861286
/* Set bootargs property */
1287-
wolfBoot_printf("FDT: Setting bootargs: %s\n", LINUX_BOOTARGS);
12881287
fdt_fixup_str(fdt, off, "chosen", "bootargs", LINUX_BOOTARGS);
12891288
} else {
12901289
wolfBoot_printf("FDT: Failed to find/create chosen node (%d)\n", off);

hal/zynq.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1869,7 +1869,6 @@ int hal_dts_fixup(void* dts_addr)
18691869

18701870
/* Set bootargs property - overrides PetaLinux default root= with
18711871
* the wolfBoot partition layout. */
1872-
wolfBoot_printf("FDT: Setting bootargs: %s\n", LINUX_BOOTARGS);
18731872
ret = fdt_fixup_str(fdt, off, "chosen", "bootargs", LINUX_BOOTARGS);
18741873
if (ret < 0) {
18751874
wolfBoot_printf("FDT: Failed to set bootargs (%d)\n", ret);

0 commit comments

Comments
 (0)