mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 10:31:48 +00:00
ion: dummy driver: use ARRAY_SIZE for nr of heaps
use ARRAY_SIZE to count number of heaps in static array Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
10f6f9c38a
commit
18691f53bc
@ -58,7 +58,7 @@ struct ion_platform_heap dummy_heaps[] = {
|
||||
};
|
||||
|
||||
struct ion_platform_data dummy_ion_pdata = {
|
||||
.nr = 4,
|
||||
.nr = ARRAY_SIZE(dummy_heaps),
|
||||
.heaps = dummy_heaps,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user