staging: vt6656: Remove NULL check before kfree
[pandora-kernel.git] / drivers / staging / vt6656 / hostap.c
index f70e922..51b5adf 100644 (file)
@@ -858,8 +858,7 @@ int vt6656_hostap_ioctl(PSDevice pDevice, struct iw_point *p)
        }
 
  out:
-       if (param != NULL)
-               kfree(param);
+       kfree(param);
 
        return ret;
 }