drivers/net/ethernet/mellanox/mlx4/conf.c:218:9-16: WARNING: ERR_CAST can be 
used with pdev


 Use ERR_CAST inlined function instead of ERR_PTR(PTR_ERR(...))

Generated by: scripts/coccinelle/api/err_cast.cocci

CC: Hadar Hen Zion <had...@mellanox.com>
Signed-off-by: Fengguang Wu <fengguang...@intel.com>
---

 conf.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/net/ethernet/mellanox/mlx4/conf.c
+++ b/drivers/net/ethernet/mellanox/mlx4/conf.c
@@ -215,7 +215,7 @@ static struct config_group *mlx4_set_con
 
        pdev = find_pdev_by_name(name);
        if (IS_ERR(pdev))
-               return ERR_PTR(PTR_ERR(pdev));
+               return ERR_CAST(pdev);
 
        pdev_config = kzalloc(sizeof(*pdev_config), GFP_KERNEL);
        if (!pdev_config) {
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to