diff options
author | claudiojpaz <[email protected]> | 2019-03-09 12:50:00 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <[email protected]> | 2019-03-19 16:36:58 -0400 |
commit | 3f7f41d706658f08240742787542cfff7673ea71 (patch) | |
tree | 75b7b88d4341a121b7a908661b72fb7b06d9ae3a | |
parent | 49dc762cffd8305a861ca649e82dc5533b3e3344 (diff) |
media: staging: media: zoran: Fixes a checkpatch.pl error in videocodec.c
ERROR: do not initialise statics to NULL
Signed-off-by: claudiojpaz <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r-- | drivers/staging/media/zoran/videocodec.c | 2 |
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 */ |