diff options
author | Sean Anderson | 2020-10-07 14:37:43 -0400 |
---|---|---|
committer | Tom Rini | 2020-10-22 09:54:53 -0400 |
commit | aff60aba6c44770fab8f2694ae81bafde6d22998 (patch) | |
tree | ba4d9dcc33816302989b38498245f184bc9e39c7 /doc | |
parent | c670aeee3df9186902dba07b76bd2de0776df390 (diff) |
doc: Document timer API
This adds kerneldocs for <timer.h>.
I don't know who should maintain doc/api/timer.rst, since the timer
subsystem seems to be maintained by SoC maintainers. MAINTAINERS is left
un-updated for the moment.
Signed-off-by: Sean Anderson <seanga2@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/index.rst | 1 | ||||
-rw-r--r-- | doc/api/timer.rst | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/doc/api/index.rst b/doc/api/index.rst index 1c261bcb73f..787b6778e59 100644 --- a/doc/api/index.rst +++ b/doc/api/index.rst @@ -12,4 +12,5 @@ U-Boot API documentation pinctrl rng serial + timer unicode diff --git a/doc/api/timer.rst b/doc/api/timer.rst new file mode 100644 index 00000000000..b0695174d7d --- /dev/null +++ b/doc/api/timer.rst @@ -0,0 +1,8 @@ +.. SPDX-License-Identifier: GPL-2.0+ +.. Copyright (C) 2020 Sean Anderson <seanga2@gmail.com> + +Timer Subsystem +=============== + +.. kernel-doc:: include/timer.h + :internal: |