[media] s5p-mfc: Fix a watchdog bug

Fixed wrong condition in firmware reload function used by the watchdog.

Signed-off-by: Kamil Debski <k.debski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Kamil Debski 2013-01-11 11:29:32 -03:00 committed by Mauro Carvalho Chehab
parent ba1066d2e9
commit 33133ea7ac

View file

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