diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2017-06-08 22:54:21 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2017-06-15 13:37:37 +1000 |
commit | 38434fc13e82fbba31bbb9783d212a8cc15b9b11 (patch) | |
tree | 5507e35f7a3d3b18ae1a9b1a4175462474ed9897 | |
parent | 223c49ecbca267aae228132bad360fe09ce2f8a6 (diff) | |
download | skiboot-38434fc13e82fbba31bbb9783d212a8cc15b9b11.zip skiboot-38434fc13e82fbba31bbb9783d212a8cc15b9b11.tar.gz skiboot-38434fc13e82fbba31bbb9783d212a8cc15b9b11.tar.bz2 |
chip: Print out when we initialise a chip
Print out when we initialise a chip and which node we initialised it from,
purely for informational porpoises.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r-- | core/chip.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/chip.c b/core/chip.c index e06a9bc..7de00e2 100644 --- a/core/chip.c +++ b/core/chip.c @@ -97,6 +97,7 @@ static void init_chip(struct dt_node *dn) list_head_init(&chip->i2cms); + prlog(PR_INFO, "CHIP: Initialised chip %d from %s\n", id, dn->name); chips[id] = chip; } |