diff --git a/boards/xtensa/intel_adsp_cavs15/tools/adsplog.py b/boards/xtensa/intel_adsp_cavs15/tools/adsplog.py index c5ff240b5f0..262078432f9 100755 --- a/boards/xtensa/intel_adsp_cavs15/tools/adsplog.py +++ b/boards/xtensa/intel_adsp_cavs15/tools/adsplog.py @@ -59,7 +59,7 @@ for dev in DEVICES: continue if not os.access(barfile, os.R_OK): - sys.stderr.write(f"ERROR: Cannot open {barfile} for reading.") + sys.stderr.write(f"ERROR: Cannot open {barfile} for reading.\n") sys.exit(1) fd = open(barfile) @@ -67,7 +67,7 @@ for dev in DEVICES: prot=mmap.PROT_READ) if mem is None: - sys.stderr.write("ERROR: No ADSP device found.") + sys.stderr.write("ERROR: No ADSP device found.\n") sys.exit(1) # Returns a tuple of (id, msg) if the slot is valid, or (-1, "") if