diff options
author | Gavin Shan <gwshan@linux.vnet.ibm.com> | 2015-10-09 10:38:29 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-10-09 17:28:16 +1100 |
commit | 396de731b044578233b7f2f977c876971586e1c0 (patch) | |
tree | daf78904c81061653665e59a5f96c20b86fadbdf | |
parent | b5ef8a93fb7cbcb6cdc45937397838256edaeeca (diff) | |
download | skiboot-396de731b044578233b7f2f977c876971586e1c0.zip skiboot-396de731b044578233b7f2f977c876971586e1c0.tar.gz skiboot-396de731b044578233b7f2f977c876971586e1c0.tar.bz2 |
PHB3: Remove unnecessary message in phb3_sm_fundamental_reset()skiboot-2.1.1-fw810.40-1
This removes below unnecessary message in phb3_sm_fundamental_reset()
as there already has on subsequent message indicating the situation.
Performing PERST...
Also, this decreases the outputing level of all messages in this
function to DEBUG.
Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r-- | hw/phb3.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2151,7 +2151,7 @@ static int64_t phb3_sm_fundamental_reset(struct phb3 *p) /* Handle boot time skipping of reset */ if (p->skip_perst && p->state == PHB3_STATE_FUNCTIONAL) { - PHBINF(p, "Cold boot, skipping PERST assertion\n"); + PHBDBG(p, "Cold boot, skipping PERST assertion\n"); p->state = PHB3_STATE_FRESET_ASSERT_DELAY; /* PERST skipping happens only once */ p->skip_perst = false; @@ -2169,7 +2169,6 @@ static int64_t phb3_sm_fundamental_reset(struct phb3 *p) } /* Assert PERST */ - PHBINF(p, "Performing PERST...\n"); reg = in_be64(p->regs + PHB_RESET); reg &= ~0x2000000000000000ul; out_be64(p->regs + PHB_RESET, reg); |