Skip to content

Commit 54b8a23

Browse files
keesKAGA-KOKO
authored andcommitted
m68k/macboing: Fix missed timer callback assignment
This fixes a missed function prototype callback from the timer conversions. Reported-by: kbuild test robot <[email protected]> Signed-off-by: Kees Cook <[email protected]> Signed-off-by: Thomas Gleixner <[email protected]> Link: https://lkml.kernel.org/r/20171123221902.GA75727@beast
1 parent 866c9b9 commit 54b8a23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/m68k/mac/macboing.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ static unsigned long mac_bell_phasepersample;
5050
static void mac_init_asc( void );
5151
static void mac_nosound(struct timer_list *);
5252
static void mac_quadra_start_bell( unsigned int, unsigned int, unsigned int );
53-
static void mac_quadra_ring_bell( unsigned long );
53+
static void mac_quadra_ring_bell(struct timer_list *);
5454
static void mac_av_start_bell( unsigned int, unsigned int, unsigned int );
5555
static void ( *mac_special_bell )( unsigned int, unsigned int, unsigned int );
5656

@@ -270,7 +270,7 @@ static void mac_quadra_start_bell( unsigned int freq, unsigned int length, unsig
270270
* already load the wave table, or at least call this one...
271271
* This piece keeps reloading the wave table until done.
272272
*/
273-
static void mac_quadra_ring_bell( unsigned long ignored )
273+
static void mac_quadra_ring_bell(struct timer_list *unused)
274274
{
275275
int i, count = mac_asc_samplespersec / HZ;
276276
unsigned long flags;

0 commit comments

Comments
 (0)