Fix checkpatch warning: WARNING: kfree(NULL) is safe this check is probably not required
Cc: Nagalakshmi Nandigama <nagalakshmi.nandig...@lsi.com> Cc: Sreekanth Reddy <sreekanth.re...@lsi.com> Cc: linux-s...@vger.kernel.org Cc: dl-mptfusionli...@lsi.com Signed-off-by: Fabian Frederick <f...@skynet.be> --- drivers/message/fusion/mptfc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/message/fusion/mptfc.c b/drivers/message/fusion/mptfc.c index 02a3eef..21ac845 100644 --- a/drivers/message/fusion/mptfc.c +++ b/drivers/message/fusion/mptfc.c @@ -525,8 +525,7 @@ mptfc_target_destroy(struct scsi_target *starget) if (ri) /* better be! */ ri->starget = NULL; } - if (starget->hostdata) - kfree(starget->hostdata); + kfree(starget->hostdata); starget->hostdata = NULL; } -- 1.8.4.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/