Commit a0f204a4 authored by Mihaela Muraru's avatar Mihaela Muraru Committed by Greg Kroah-Hartman

Staging: android: ion: Make a read-only structure

This patch add const qualifier at the declaration of the structure.
The structure become a read-only data, this increase the security.

Found with Coccinelle:
@r disable optional_qualifier@
identifier s,i;
@@
* static struct s i ={...};
Signed-off-by: default avatarMihaela Muraru <mihaela.muraru21@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9fdd532c
...@@ -58,7 +58,7 @@ static struct ion_platform_heap dummy_heaps[] = { ...@@ -58,7 +58,7 @@ static struct ion_platform_heap dummy_heaps[] = {
}, },
}; };
static struct ion_platform_data dummy_ion_pdata = { static const struct ion_platform_data dummy_ion_pdata = {
.nr = ARRAY_SIZE(dummy_heaps), .nr = ARRAY_SIZE(dummy_heaps),
.heaps = dummy_heaps, .heaps = dummy_heaps,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment