devicetree.h: fix DT_ENUM_TOKEN docstring

Remove extraneous parentheses.

Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
Martí Bolívar 2021-05-25 10:00:08 -07:00 committed by Kumar Gala
commit a2b61d5ed0

View file

@ -740,9 +740,9 @@
* *
* Example usage: * Example usage:
* *
* DT_ENUM_TOKEN((DT_NODELABEL(n1), prop) // foo * DT_ENUM_TOKEN(DT_NODELABEL(n1), prop) // foo
* DT_ENUM_TOKEN((DT_NODELABEL(n2), prop) // FOO * DT_ENUM_TOKEN(DT_NODELABEL(n2), prop) // FOO
* DT_ENUM_TOKEN((DT_NODELABEL(n3), prop) // 123_foo * DT_ENUM_TOKEN(DT_NODELABEL(n3), prop) // 123_foo
* *
* Notice how: * Notice how:
* *