summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--hw/lpc-mbox.c2
-rw-r--r--libflash/errors.h2
-rw-r--r--libflash/mbox-flash.c2
3 files changed, 2 insertions, 4 deletions
diff --git a/hw/lpc-mbox.c b/hw/lpc-mbox.c
index 4b1d5e52..58a99692 100644
--- a/hw/lpc-mbox.c
+++ b/hw/lpc-mbox.c
@@ -111,7 +111,7 @@ static void bmc_mbox_send_message(struct bmc_mbox_msg *msg)
*/
/* Ping */
- prlog(PR_DEBUG, "Sending BMC interrupt\n");
+ prlog(PR_TRACE, "Sending BMC interrupt\n");
bmc_mbox_outb(MBOX_CTRL_INT_SEND, MBOX_HOST_CTRL);
}
diff --git a/libflash/errors.h b/libflash/errors.h
index d144e097..27662c13 100644
--- a/libflash/errors.h
+++ b/libflash/errors.h
@@ -37,7 +37,7 @@
#ifdef __SKIBOOT__
#include <skiboot.h>
#define FL_INF(fmt...) do { prlog(PR_INFO, fmt); } while(0)
-#define FL_DBG(fmt...) do { prlog(PR_DEBUG, fmt); } while(0)
+#define FL_DBG(fmt...) do { prlog(PR_TRACE, fmt); } while(0)
#define FL_ERR(fmt...) do { prlog(PR_ERR, fmt); } while(0)
#else
#include <stdio.h>
diff --git a/libflash/mbox-flash.c b/libflash/mbox-flash.c
index 6742d215..3239be96 100644
--- a/libflash/mbox-flash.c
+++ b/libflash/mbox-flash.c
@@ -665,8 +665,6 @@ static int mbox_window_move(struct mbox_flash_data *mbox_flash,
return 0;
}
- prlog(PR_DEBUG, "Adjusting the window\n");
-
/* V1 needs to remember where it has opened the window, note it
* here.
* If we're running V2 the response to the CREATE_*_WINDOW command
OpenPOWER on IntegriCloud