summaryrefslogtreecommitdiff
path: root/scripts/gdb/linux/vfs.py
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2025-07-21 15:39:07 +0100
committerMark Brown <broonie@kernel.org>2025-07-21 15:39:07 +0100
commit69e536c93242425fc65580b02d3f781a96403660 (patch)
tree5fac4c392ac1de8a885bcb2c6908ef2cfbfbc4ae /scripts/gdb/linux/vfs.py
parent951a6d8d41289b86a564ee5563ededa702b62b1b (diff)
parentd60f7cab7c04944a79af16caa43c141e780a59c6 (diff)
spidev: introduce trivial abb sensor device
Merge series from Heiko Schocher <hs@denx.de>: This series introduces the changes needed for trivial spi based sensors from ABB, currently operated from userspace.
Diffstat (limited to 'scripts/gdb/linux/vfs.py')
-rw-r--r--scripts/gdb/linux/vfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gdb/linux/vfs.py b/scripts/gdb/linux/vfs.py
index b5fbb18ccb77..9e921b645a68 100644
--- a/scripts/gdb/linux/vfs.py
+++ b/scripts/gdb/linux/vfs.py
@@ -22,7 +22,7 @@ def dentry_name(d):
if parent == d or parent == 0:
return ""
p = dentry_name(d['d_parent']) + "/"
- return p + d['d_shortname']['string'].string()
+ return p + d['d_name']['name'].string()
class DentryName(gdb.Function):
"""Return string of the full path of a dentry.