drivers/hwmon/occ/occ_sysfs.c:265:9-16: WARNING: ERR_CAST can be used with hwmon -> dev Use ERR_CAST inlined function instead of ERR_PTR(PTR_ERR(...)) Generated by: scripts/coccinelle/api/err_cast.cocci CC: Edward A. James <eajames@xxxxxxxxxx> Signed-off-by: Fengguang Wu <fengguang.wu@xxxxxxxxx> --- occ_sysfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/hwmon/occ/occ_sysfs.c +++ b/drivers/hwmon/occ/occ_sysfs.c @@ -262,7 +262,7 @@ struct occ_sysfs *occ_sysfs_start(struct if (IS_ERR(hwmon->dev)) { dev_err(dev, "cannot register hwmon device %s: %ld\n", hwmon->hwmon_name, PTR_ERR(hwmon->dev)); - return ERR_PTR(PTR_ERR(hwmon->dev)); + return ERR_CAST(hwmon->dev); } return hwmon; -- To unsubscribe from this list: send the line "unsubscribe linux-i2c" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html