Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 817bf56a authored by Fabrizio Perria's avatar Fabrizio Perria Committed by Greg Kroah-Hartman
Browse files

staging: android: ion: Fix unnecessary initialization of static variable



Fix checkpatch warning: removed unnecessary initialization of
static variable "heap_id" to 0 in source file "ioc.c".

Signed-off-by: default avatarFabrizio Perria <fabrizio.perria@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6eeabd8b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@
#include "ion.h"

static struct ion_device *internal_dev;
static int heap_id = 0;
static int heap_id;

bool ion_buffer_cached(struct ion_buffer *buffer)
{