staging: fieldbus: simplify devm_anybuss_host_common_probe
authorTian Tao <tiantao6@hisilicon.com>
Tue, 13 Apr 2021 00:53:03 +0000 (08:53 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 13 Apr 2021 07:53:41 +0000 (09:53 +0200)
Use devm_add_action_or_reset() instead of devres_alloc() and
devres_add(), which works the same. This will simplify the
code. There is no functional changes.

Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
Link: https://lore.kernel.org/r/1618275183-56792-1-git-send-email-tiantao6@hisilicon.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/fieldbus/anybuss/host.c

index 549cb7d51af81dd677007fa66b4829feba39eb87..c97df91124a443abe9752fa69943b04b8f57bf77 100644 (file)
@@ -1406,32 +1406,26 @@ void anybuss_host_common_remove(struct anybuss_host *host)
 }
 EXPORT_SYMBOL_GPL(anybuss_host_common_remove);
 
-static void host_release(struct device *dev, void *res)
+static void host_release(void *res)
 {
-       struct anybuss_host **dr = res;
-
-       anybuss_host_common_remove(*dr);
+       anybuss_host_common_remove(res);
 }
 
 struct anybuss_host * __must_check
 devm_anybuss_host_common_probe(struct device *dev,
                               const struct anybuss_ops *ops)
 {
-       struct anybuss_host **dr;
        struct anybuss_host *host;
-
-       dr = devres_alloc(host_release, sizeof(struct anybuss_host *),
-                         GFP_KERNEL);
-       if (!dr)
-               return ERR_PTR(-ENOMEM);
+       int ret;
 
        host = anybuss_host_common_probe(dev, ops);
-       if (IS_ERR(host)) {
-               devres_free(dr);
+       if (IS_ERR(host))
                return host;
-       }
-       *dr = host;
-       devres_add(dev, dr);
+
+       ret = devm_add_action_or_reset(dev, host_release, host);
+       if (ret)
+               return ERR_PTR(ret);
+
        return host;
 }
 EXPORT_SYMBOL_GPL(devm_anybuss_host_common_probe);