diff options
author | Himangi Saraogi <[email protected]> | 2014-06-17 01:42:24 +0530 |
---|---|---|
committer | Chris Metcalf <[email protected]> | 2014-10-02 10:19:32 -0400 |
commit | 367b9380b1717dc53ea7e1f05da58c99e0ae54a3 (patch) | |
tree | 9717790a07980b62dddbea6b710a842848344b3e | |
parent | fe82dcec644244676d55a1384c958d5f67979adb (diff) |
tile: use ARRAY_SIZE
ARRAY_SIZE is more concise to use when the size of an array is divided
by the size of its type or the size of its first element.
The semantic patch that makes this change is as follows:
// <smpl>
@i@
@@
@@
type T;
T[] E;
@@
- (sizeof(E)/sizeof(T))
+ ARRAY_SIZE(E)
// </smpl>
Signed-off-by: Himangi Saraogi <[email protected]>
Acked-by: Julia Lawall <[email protected]>
Signed-off-by: Chris Metcalf <[email protected]>
-rw-r--r-- | arch/tile/kernel/traps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/tile/kernel/traps.c b/arch/tile/kernel/traps.c index f3ceb6308e42..86900ccd4977 100644 --- a/arch/tile/kernel/traps.c +++ b/arch/tile/kernel/traps.c @@ -277,7 +277,7 @@ void __kprobes do_trap(struct pt_regs *regs, int fault_num, if (fixup_exception(regs)) /* ILL_TRANS or UNALIGN_DATA */ return; if (fault_num >= 0 && - fault_num < sizeof(int_name)/sizeof(int_name[0]) && + fault_num < ARRAY_SIZE(int_name) && int_name[fault_num] != NULL) name = int_name[fault_num]; else |