The vfree() function performs also input parameter validation. 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>
 static void fw_unload_locked(void)
 {
        if (tx_data) {
-               if (tx_data->code_sets)
-                       vfree(tx_data->code_sets);
+               vfree(tx_data->code_sets);
 
-               if (tx_data->datap)
-                       vfree(tx_data->datap);
+               vfree(tx_data->datap);
 
                vfree(tx_data);
                tx_data = NULL;