summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmitay Isaacs <amitay@ozlabs.org>2018-12-03 14:27:57 +1100
committerAlistair Popple <alistair@popple.id.au>2018-12-07 14:36:50 +1100
commit8fc05a932880c04f2fa676b993f38ee7c9da813b (patch)
tree78c3f4ebc506d913b3d535594e5a2a9821bd1349
parente554483c257f95b8505979dbefde61f2f6c62c61 (diff)
downloadpdbg-8fc05a932880c04f2fa676b993f38ee7c9da813b.tar.gz
pdbg-8fc05a932880c04f2fa676b993f38ee7c9da813b.zip
libpdbg: Drop pdbg_target_chip_id()
Signed-off-by: Amitay Isaacs <amitay@ozlabs.org>
-rw-r--r--libpdbg/libpdbg.c15
-rw-r--r--libpdbg/libpdbg.h4
2 files changed, 0 insertions, 19 deletions
diff --git a/libpdbg/libpdbg.c b/libpdbg/libpdbg.c
index f3ed959..0e71dec 100644
--- a/libpdbg/libpdbg.c
+++ b/libpdbg/libpdbg.c
@@ -168,21 +168,6 @@ int pdbg_target_u32_index(struct pdbg_target *target, const char *name, int inde
return 0;
}
-uint32_t pdbg_target_chip_id(struct pdbg_target *target)
-{
- uint32_t id;
-
- while (pdbg_target_u32_property(target, "chip-id", &id)) {
- target = target->parent;
-
- /* If we hit this we've reached the top of the tree
- * and haven't found chip-id */
- assert(target);
- }
-
- return id;
-}
-
void pdbg_progress_tick(uint64_t cur, uint64_t end)
{
if (progress_tick)
diff --git a/libpdbg/libpdbg.h b/libpdbg/libpdbg.h
index 44540e4..301c2c8 100644
--- a/libpdbg/libpdbg.h
+++ b/libpdbg/libpdbg.h
@@ -94,10 +94,6 @@ uint64_t pdbg_target_address(struct pdbg_target *target, uint64_t *size);
#define pdbg_get_address(target, index, size) \
(index == 0 ? pdbg_target_address(target, size) : assert(0))
-/* Find an chip-id property in this node; if not found, walk up the parent
- * nodes. Returns -1 if no chip-id property exists. */
-uint32_t pdbg_target_chip_id(struct pdbg_target *target);
-
/* Misc. */
void pdbg_targets_init(void *fdt);
void pdbg_target_probe_all(struct pdbg_target *parent);
OpenPOWER on IntegriCloud