Skip to content

Commit 6075388

Browse files
committed
tools/dump_pmgr.py: Do not dump pwrgate regs
These are gone in newer ADTs Signed-off-by: Hector Martin <[email protected]>
1 parent b1ad2d3 commit 6075388

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

proxyclient/tools/dump_pmgr.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
for i, r in enumerate(pmgr.perf_regs):
2525
print(f" #{i:2d} reg: {r.reg} off: {r.offset:05x} size:{r.size:05x} unk:{r.unk:08x}")
2626

27-
print()
28-
print("=== PWR Gate Regs ===")
29-
for i, r in enumerate(pmgr.pwrgate_regs):
30-
print(f" #{i:2d} reg: {r.reg} off: {r.offset:05x} mask:{r.mask:08x} unk:{r.unk:08x}")
27+
#print()
28+
#print("=== PWR Gate Regs ===")
29+
#for i, r in enumerate(pmgr.pwrgate_regs):
30+
#print(f" #{i:2d} reg: {r.reg} off: {r.offset:05x} mask:{r.mask:08x} unk:{r.unk:08x}")
3131

3232
clock_users = {}
3333
dev_users = {}

0 commit comments

Comments
 (0)