diff options
author | Carlos Llamas <cmllamas@google.com> | 2023-12-01 17:21:36 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-01-20 11:53:01 +0100 |
commit | 9eae760e748ccb0512ef9a9836161cd3cc98f277 (patch) | |
tree | 781b7b792713916e3379a0cf60dbda509478d85b /drivers/android | |
parent | 220f3a317bb6f865a3ab8f078bf7bfa1eaf9f34a (diff) | |
download | linux-stable-9eae760e748ccb0512ef9a9836161cd3cc98f277.tar.gz linux-stable-9eae760e748ccb0512ef9a9836161cd3cc98f277.tar.bz2 linux-stable-9eae760e748ccb0512ef9a9836161cd3cc98f277.zip |
binder: fix comment on binder_alloc_new_buf() return value
commit e1090371e02b601cbfcea175c2a6cc7c955fa830 upstream.
Update the comments of binder_alloc_new_buf() to reflect that the return
value of the function is now ERR_PTR(-errno) on failure.
No functional changes in this patch.
Cc: stable@vger.kernel.org
Fixes: 57ada2fb2250 ("binder: add log information for binder transaction failures")
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Signed-off-by: Carlos Llamas <cmllamas@google.com>
Link: https://lore.kernel.org/r/20231201172212.1813387-8-cmllamas@google.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/android')
-rw-r--r-- | drivers/android/binder_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/android/binder_alloc.c b/drivers/android/binder_alloc.c index db340f0575a8..e5fa2042585a 100644 --- a/drivers/android/binder_alloc.c +++ b/drivers/android/binder_alloc.c @@ -557,7 +557,7 @@ err_alloc_buf_struct_failed: * is the sum of the three given sizes (each rounded up to * pointer-sized boundary) * - * Return: The allocated buffer or %NULL if error + * Return: The allocated buffer or %ERR_PTR(-errno) if error */ struct binder_buffer *binder_alloc_new_buf(struct binder_alloc *alloc, size_t data_size, |