mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
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: Fabrizio Perria <fabrizio.perria@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6eeabd8b2b
commit
817bf56ae7
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue