The functions i2c_put_adapter() and release_firmware() test whether their
argument is NULL and then return immediately. Thus the test around the call
is not needed.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
         * needed around for copying to the IS working memory every
         * time before the Cortex-A5 is restarted.
         */
-       if (is->fw.f_w)
-               release_firmware(is->fw.f_w);
+       release_firmware(is->fw.f_w);
        is->fw.f_w = fw;
 done:
        mutex_unlock(&is->lock);
        vb2_dma_contig_cleanup_ctx(is->alloc_ctx);
        fimc_is_put_clocks(is);
        fimc_is_debugfs_remove(is);
-       if (is->fw.f_w)
-               release_firmware(is->fw.f_w);
+       release_firmware(is->fw.f_w);
        fimc_is_free_cpu_memory(is);
 
        return 0;
 
        v4l2_device_unregister_subdev(sd);
        camif->sensor.sd = NULL;
        i2c_unregister_device(client);
-       if (adapter)
-               i2c_put_adapter(adapter);
+       i2c_put_adapter(adapter);
 }
 
 static int camif_create_media_links(struct camif_dev *camif)