Staging: rts5208: ms: Use x instead of x != NULL.
authorSandhya Bankar <bankarsandhya512@gmail.com>
Mon, 19 Sep 2016 09:12:24 +0000 (14:42 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 20 Sep 2016 11:57:19 +0000 (13:57 +0200)
Use x instead of x != NULL. This patch was found by checkpatch.

Signed-off-by: Sandhya Bankar <bankarsandhya512@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rts5208/ms.c

index f927ba6..6afddea 100644 (file)
@@ -4077,7 +4077,7 @@ void ms_free_l2p_tbl(struct rtsx_chip *chip)
        struct ms_info *ms_card = &chip->ms_card;
        int i = 0;
 
-       if (ms_card->segment != NULL) {
+       if (ms_card->segment) {
                for (i = 0; i < ms_card->segment_cnt; i++) {
                        vfree(ms_card->segment[i].l2p_table);
                        ms_card->segment[i].l2p_table = NULL;