repo.or.cz
/
drm
/
drm-misc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
drm/nouveau: fix kernel-doc comments
[drm/drm-misc.git]
/
scripts
/
include
/
array_size.h
blob
26ba78d867d160dbb7e8280bfcae5ce511b3429f
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef ARRAY_SIZE_H
3
#define ARRAY_SIZE_H
4
5
/**
6
* ARRAY_SIZE - get the number of elements in array @arr
7
* @arr: array to be sized
8
*/
9
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
10
11
#endif
/* ARRAY_SIZE_H */