[PATCH] Input: fix err_cast.cocci warnings

2015-12-27 Thread kbuild test robot
drivers/input/touchscreen/cyttsp_core.c:637:9-16: WARNING: ERR_CAST can be used 
with pdata


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

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

CC: Oreste Salerno 
Signed-off-by: Fengguang Wu 
---

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

--- a/drivers/input/touchscreen/cyttsp_core.c
+++ b/drivers/input/touchscreen/cyttsp_core.c
@@ -634,7 +634,7 @@ struct cyttsp *cyttsp_probe(const struct
 
pdata = cyttsp_get_platform_data(dev);
if (IS_ERR(pdata))
-   return ERR_PTR(PTR_ERR(pdata));
+   return ERR_CAST(pdata);
 
ts = kzalloc(sizeof(*ts) + xfer_buf_size, GFP_KERNEL);
input_dev = input_allocate_device();
--
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/


[PATCH] Input: fix err_cast.cocci warnings

2015-12-27 Thread kbuild test robot
drivers/input/touchscreen/cyttsp_core.c:637:9-16: WARNING: ERR_CAST can be used 
with pdata


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

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

CC: Oreste Salerno 
Signed-off-by: Fengguang Wu 
---

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

--- a/drivers/input/touchscreen/cyttsp_core.c
+++ b/drivers/input/touchscreen/cyttsp_core.c
@@ -634,7 +634,7 @@ struct cyttsp *cyttsp_probe(const struct
 
pdata = cyttsp_get_platform_data(dev);
if (IS_ERR(pdata))
-   return ERR_PTR(PTR_ERR(pdata));
+   return ERR_CAST(pdata);
 
ts = kzalloc(sizeof(*ts) + xfer_buf_size, GFP_KERNEL);
input_dev = input_allocate_device();
--
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/