Skip to content

Commit f5d1d6d

Browse files
committed
m68k: mac: Remove unused sine_data[]
When building with W=1: arch/m68k/mac/macboing.c:29:26: warning: ‘sine_data’ defined but not used [-Wunused-const-variable=] 29 | static const signed char sine_data[] = { | ^~~~~~~~~ The predefined sine table was superseded by a table calculated at run-time in v2.2.0. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/75dbc0a141490daf9febfb8cb4a43ae87fbe3352.1694613528.git.geert@linux-m68k.org
1 parent 5a368e9 commit f5d1d6d

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

arch/m68k/mac/macboing.c

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,6 @@ static int mac_asc_inited;
2222
*/
2323
static __u8 mac_asc_wave_tab[ 0x800 ];
2424

25-
/*
26-
* Alan's original sine table; needs interpolating to 0x800
27-
* (hint: interpolate or hardwire [0 -> Pi/2[, it's symmetric)
28-
*/
29-
static const signed char sine_data[] = {
30-
0, 39, 75, 103, 121, 127, 121, 103, 75, 39,
31-
0, -39, -75, -103, -121, -127, -121, -103, -75, -39
32-
};
33-
3425
/*
3526
* where the ASC hides ...
3627
*/

0 commit comments

Comments
 (0)