[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20190412024520.26835-1-tiagohenrique.macedo@gmai.com>
Date: Thu, 11 Apr 2019 23:45:20 -0300
From: Tiago Macedo <tiagohenrique.macedo@...il.com>
To: gregkh@...uxfoundation.org
Cc: linux-media@...r.kernel.org, linux-kernel@...r.kernel.org,
devel@...verdev.osuosl.org, lkcamp@...ts.libreplanetbr.org,
Tiago Macedo <tiagohenrique.macedo@...i.com>
Subject: [PATCH] Fixed coding style: do not initialise statics to NULL
The standard guarantees that a pointer with static storage duration
and no other initializer will be initialized to be a null pointer.
Signed-off-by: Tiago Macedo <tiagohenrique.macedo@...i.com>
---
drivers/staging/media/zoran/videocodec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/media/zoran/videocodec.c b/drivers/staging/media/zoran/videocodec.c
index c1ee5cb7e66b..cc6e0f1cd7b4 100644
--- a/drivers/staging/media/zoran/videocodec.c
+++ b/drivers/staging/media/zoran/videocodec.c
@@ -51,7 +51,7 @@ struct codec_list {
struct codec_list *next;
};
-static struct codec_list *codeclist_top = NULL;
+static struct codec_list *codeclist_top;
/* ================================================= */
/* function prototypes of the master/slave interface */
--
2.17.1
Powered by blists - more mailing lists