Useless statement must be return with argument. This patch silences a compiler warning: drivers/misc/enclosure.c: In function ‘enclosure_component_register’: drivers/misc/enclosure.c:289: warning: ignoring return value of ‘ERR_PTR’, declared with attribute warn_unused_result Signed-off-by: Kulikov Vasiliy <segooon@xxxxxxxxx> --- drivers/misc/enclosure.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/misc/enclosure.c b/drivers/misc/enclosure.c index 48c84a5..9ae7bef 100644 --- a/drivers/misc/enclosure.c +++ b/drivers/misc/enclosure.c @@ -286,7 +286,7 @@ enclosure_component_register(struct enclosure_device *edev, err = device_register(cdev); if (err) - ERR_PTR(err); + return ERR_PTR(err); return ecomp; } -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html