Documentation: kunit: Rename references to kunit_abort()

The kunit_abort() function has been renamed __kunit_abort(), update the
references to it in the documentation.

Suggested-by: Daniel Latypov <dlatypov@google.com>
Signed-off-by: David Gow <davidgow@google.com>
Reviewed-by: Daniel Latypov <dlatypov@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
This commit is contained in:
David Gow 2023-06-02 11:53:59 +08:00 committed by Shuah Khan
parent 260755184c
commit fefdb43943
1 changed files with 2 additions and 2 deletions

View File

@ -119,9 +119,9 @@ All expectations/assertions are formatted as:
terminated immediately.
- Assertions call the function:
``void __noreturn kunit_abort(struct kunit *)``.
``void __noreturn __kunit_abort(struct kunit *)``.
- ``kunit_abort`` calls the function:
- ``__kunit_abort`` calls the function:
``void __noreturn kunit_try_catch_throw(struct kunit_try_catch *try_catch)``.
- ``kunit_try_catch_throw`` calls the function: