diff options
author | Heinrich Schuchardt | 2020-07-24 18:39:43 +0200 |
---|---|---|
committer | Simon Glass | 2020-07-28 19:30:39 -0600 |
commit | b9390ce51cb46f4b4acda320e7ea8e0bd120e4b8 (patch) | |
tree | 137caf86b7c89a4691c505ae7582c95b328f5d5f /include/dm/ofnode.h | |
parent | 1d310001dc47bd2582d03d05a167b5adf7d4f3b8 (diff) |
dm: remove superfluous comment for union ofnode_union
"future live tree" does not make sense anymore as we have CONFIG_OF_LIVE.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/dm/ofnode.h')
-rw-r--r-- | include/dm/ofnode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dm/ofnode.h b/include/dm/ofnode.h index a0d3df77868..8df2facf998 100644 --- a/include/dm/ofnode.h +++ b/include/dm/ofnode.h @@ -48,7 +48,7 @@ struct resource; * is not a really a pointer to a node: it is an offset value. See above. */ typedef union ofnode_union { - const struct device_node *np; /* will be used for future live tree */ + const struct device_node *np; long of_offset; } ofnode; |