mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
m68k: ARRAY_SIZE() cleanup
Signed-off-by: Alejandro Martinez Ruiz <alex@flawedcode.org> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Roman Zippel <zippel@linux-m68k.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
6f7127db31
commit
b9e5e119fd
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ static const signed char sine_data[] = {
|
|||
0, 39, 75, 103, 121, 127, 121, 103, 75, 39,
|
||||
0, -39, -75, -103, -121, -127, -121, -103, -75, -39
|
||||
};
|
||||
#define DATA_SIZE (sizeof(sine_data)/sizeof(sine_data[0]))
|
||||
#define DATA_SIZE ARRAY_SIZE(sine_data)
|
||||
|
||||
#define custom amiga_custom
|
||||
|
||||
|
|
Loading…
Reference in a new issue