summaryrefslogtreecommitdiffstats
path: root/rtemsspec/sphinxcontent.py
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2022-09-07 16:15:42 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2022-09-28 09:58:46 +0200
commit544347ae01d68e8dc6f2600b584d687597c1f14c (patch)
treec581c4b6b3c58560433fec2a1d0d8d57cc9d0975 /rtemsspec/sphinxcontent.py
parentspec: Fix typos (diff)
downloadrtems-central-544347ae01d68e8dc6f2600b584d687597c1f14c.tar.bz2
spec: Refine unspecified interfaces
Diffstat (limited to 'rtemsspec/sphinxcontent.py')
-rw-r--r--rtemsspec/sphinxcontent.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/rtemsspec/sphinxcontent.py b/rtemsspec/sphinxcontent.py
index 1fc3d3c7..f919511d 100644
--- a/rtemsspec/sphinxcontent.py
+++ b/rtemsspec/sphinxcontent.py
@@ -290,11 +290,19 @@ class SphinxMapper(ItemMapper):
self.add_get_value("interface/union:/name", _get_value_sphinx_type)
self.add_get_value("interface/unspecified-define:/name",
_get_value_sphinx_unspecified_define)
+ self.add_get_value("interface/unspecified-enumerator:/name",
+ _get_value_sphinx_unspecified_define)
self.add_get_value("interface/unspecified-function:/name",
_get_value_sphinx_unspecified_function)
self.add_get_value("interface/unspecified-group:/name",
_get_value_sphinx_unspecified_group)
- self.add_get_value("interface/unspecified-type:/name",
+ self.add_get_value("interface/unspecified-enum:/name",
+ _get_value_sphinx_unspecified_type)
+ self.add_get_value("interface/unspecified-struct:/name",
+ _get_value_sphinx_unspecified_type)
+ self.add_get_value("interface/unspecified-typedef:/name",
+ _get_value_sphinx_unspecified_type)
+ self.add_get_value("interface/unspecified-union:/name",
_get_value_sphinx_unspecified_type)