[media] s5p-mfc: Fix a watchdog bug
authorKamil Debski <[email protected]>
Fri, 11 Jan 2013 14:29:32 +0000 (11:29 -0300)
committerMauro Carvalho Chehab <[email protected]>
Tue, 5 Feb 2013 19:27:19 +0000 (17:27 -0200)
Fixed wrong condition in firmware reload function used by the watchdog.

Signed-off-by: Kamil Debski <[email protected]>
Signed-off-by: Kyungmin Park <[email protected]>
Signed-off-by: Sylwester Nawrocki <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
drivers/media/platform/s5p-mfc/s5p_mfc_ctrl.c

index 1682271c24531096f05dc045c1df95a9f61f812a..2e5f30b40deaaf16f8b5062232976cb0ee5496a9 100644 (file)
@@ -130,7 +130,7 @@ int s5p_mfc_reload_firmware(struct s5p_mfc_dev *dev)
                release_firmware(fw_blob);
                return -ENOMEM;
        }
-       if (dev->fw_virt_addr) {
+       if (!dev->fw_virt_addr) {
                mfc_err("MFC firmware is not allocated\n");
                release_firmware(fw_blob);
                return -EINVAL;