]> git.proxmox.com Git - mirror_qemu.git/blobdiff - util/qemu-progress.c
target/riscv: pmp: Ignore writes when RW=01 and MML=0
[mirror_qemu.git] / util / qemu-progress.c
index 3c2223c1a21cd3173fe86cf96e44fce3e3bb9299..aa994668f1c4a7b5c6c78551623f24f4accadc1d 100644 (file)
@@ -23,7 +23,7 @@
  */
 
 #include "qemu/osdep.h"
-#include "qemu-common.h"
+#include "qemu/qemu-progress.h"
 
 struct progress_state {
     float current;
@@ -131,7 +131,7 @@ void qemu_progress_end(void)
 /*
  * Report progress.
  * @delta is how much progress we made.
- * If @max is zero, @delta is an absolut value of the total job done.
+ * If @max is zero, @delta is an absolute value of the total job done.
  * Else, @delta is a progress delta since the last call, as a fraction
  * of @max.  I.e. the delta is @delta * @max / 100. This allows
  * relative accounting of functions which may be a different fraction of