summaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorclaudiojpaz <claudiojpaz@gmail.com>2019-03-09 12:50:00 -0500
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>2019-03-19 16:36:58 -0400
commit3f7f41d706658f08240742787542cfff7673ea71 (patch)
tree75b7b88d4341a121b7a908661b72fb7b06d9ae3a /drivers/staging
parent49dc762cffd8305a861ca649e82dc5533b3e3344 (diff)
downloadlinux-3f7f41d706658f08240742787542cfff7673ea71.tar.gz
linux-3f7f41d706658f08240742787542cfff7673ea71.tar.bz2
linux-3f7f41d706658f08240742787542cfff7673ea71.zip
media: staging: media: zoran: Fixes a checkpatch.pl error in videocodec.c
ERROR: do not initialise statics to NULL Signed-off-by: claudiojpaz <claudiojpaz@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/media/zoran/videocodec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/media/zoran/videocodec.c b/drivers/staging/media/zoran/videocodec.c
index 4427ae7126e2..044ef8455ba8 100644
--- a/drivers/staging/media/zoran/videocodec.c
+++ b/drivers/staging/media/zoran/videocodec.c
@@ -63,7 +63,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 */