diff options
author | Bhaktipriya Shridhar <bhaktipriya96@gmail.com> | 2016-02-18 19:30:13 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-20 23:04:11 (GMT) |
commit | bfb7ff2c0bf322a1780e1cf2479ace7a5beb8ab9 (patch) | |
tree | f6094d5078069113ff655b79ad8fdccdbcc30789 /net/can | |
parent | 382f00561cf322d63bd5f946f226ec630ee9866a (diff) | |
download | linux-bfb7ff2c0bf322a1780e1cf2479ace7a5beb8ab9.tar.xz |
staging: rtl8723au: hal: Use macro ARRAY_SIZE
The macro ARRAY_SIZE is more concise to use instead of dividing
size of the array by the size of its type.
Changes were made using Coccinelle.
@@
type T;
T[] E;
@@
- (sizeof(E)/sizeof(T))
+ ARRAY_SIZE(E)
Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net/can')
0 files changed, 0 insertions, 0 deletions