]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
mfd: kempld-core: Fix callback return value check
authorAmeya Palande <2ameya@gmail.com>
Thu, 26 Feb 2015 20:05:51 +0000 (12:05 -0800)
committerLee Jones <lee.jones@linaro.org>
Thu, 12 Mar 2015 09:27:58 +0000 (09:27 +0000)
On success, callback function returns 0. So invert the if condition
check so that we can break out of loop.

Cc: stable@vger.kernel.org
Signed-off-by: Ameya Palande <2ameya@gmail.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/kempld-core.c

index f38ec424872e362b934aaa6edd2fb21358bcb326..5615522f8d628b0f9d4b43d240d18d7bad02c835 100644 (file)
@@ -739,7 +739,7 @@ static int __init kempld_init(void)
                for (id = kempld_dmi_table;
                     id->matches[0].slot != DMI_NONE; id++)
                        if (strstr(id->ident, force_device_id))
-                               if (id->callback && id->callback(id))
+                               if (id->callback && !id->callback(id))
                                        break;
                if (id->matches[0].slot == DMI_NONE)
                        return -ENODEV;