[PATCH] kunit: device: Fix a NULL vs IS_ERR() check in init()

3 views
Skip to first unread message

Dan Carpenter

unread,
Jan 10, 2024, 1:55:20 PMJan 10
to davi...@google.com, Brendan Higgins, Shuah Khan, Matti Vaittinen, Maxime Ripard, Greg Kroah-Hartman, linux-k...@vger.kernel.org, kuni...@googlegroups.com, linux-...@vger.kernel.org, kernel-...@vger.kernel.org
The root_device_register() function does not return NULL, it returns
error pointers. Fix the check to match.

Fixes: d03c720e03bd ("kunit: Add APIs for managing devices")
Signed-off-by: Dan Carpenter <dan.ca...@linaro.org>
---
lib/kunit/device.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/kunit/device.c b/lib/kunit/device.c
index f5371287b375..074c6dd2e36a 100644
--- a/lib/kunit/device.c
+++ b/lib/kunit/device.c
@@ -45,8 +45,8 @@ int kunit_bus_init(void)
int error;

kunit_bus_device = root_device_register("kunit");
- if (!kunit_bus_device)
- return -ENOMEM;
+ if (IS_ERR(kunit_bus_device))
+ return PTR_ERR(kunit_bus_device);

error = bus_register(&kunit_bus_type);
if (error)
--
2.43.0

Rae Moar

unread,
Jan 10, 2024, 4:10:09 PMJan 10
to Dan Carpenter, davi...@google.com, Brendan Higgins, Shuah Khan, Matti Vaittinen, Maxime Ripard, Greg Kroah-Hartman, linux-k...@vger.kernel.org, kuni...@googlegroups.com, linux-...@vger.kernel.org, kernel-...@vger.kernel.org
On Wed, Jan 10, 2024 at 1:55 PM Dan Carpenter <dan.ca...@linaro.org> wrote:
>
> The root_device_register() function does not return NULL, it returns
> error pointers. Fix the check to match.
>
> Fixes: d03c720e03bd ("kunit: Add APIs for managing devices")
> Signed-off-by: Dan Carpenter <dan.ca...@linaro.org>

This change looks good to me! We could check for IS_ERR_OR_NULL
instead but this change is more correct and is also how others check
root_device_register().

Reviewed-by: Rae Moar <rm...@google.com>

Thanks!
Rae


> ---
> lib/kunit/device.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/kunit/device.c b/lib/kunit/device.c
> index f5371287b375..074c6dd2e36a 100644
> --- a/lib/kunit/device.c
> +++ b/lib/kunit/device.c
> @@ -45,8 +45,8 @@ int kunit_bus_init(void)
> int error;
>
> kunit_bus_device = root_device_register("kunit");
> - if (!kunit_bus_device)
> - return -ENOMEM;
> + if (IS_ERR(kunit_bus_device))
> + return PTR_ERR(kunit_bus_device);
>
> error = bus_register(&kunit_bus_type);
> if (error)
> --
> 2.43.0
>
> --
> You received this message because you are subscribed to the Google Groups "KUnit Development" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to kunit-dev+...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/kunit-dev/dd938a86-38d9-4d62-abd0-1df80395fbbd%40moroto.mountain.

David Gow

unread,
Jan 11, 2024, 6:43:14 PMJan 11
to Dan Carpenter, Brendan Higgins, Shuah Khan, Matti Vaittinen, Maxime Ripard, Greg Kroah-Hartman, linux-k...@vger.kernel.org, kuni...@googlegroups.com, linux-...@vger.kernel.org, kernel-...@vger.kernel.org
On Thu, 11 Jan 2024 at 02:55, Dan Carpenter <dan.ca...@linaro.org> wrote:
>
> The root_device_register() function does not return NULL, it returns
> error pointers. Fix the check to match.
>
> Fixes: d03c720e03bd ("kunit: Add APIs for managing devices")
> Signed-off-by: Dan Carpenter <dan.ca...@linaro.org>
> ---

Thanks for catching this.

Reviewed-by: David Gow <davi...@google.com>

Cheers,
-- David
Reply all
Reply to author
Forward
0 new messages