Skip to content

Commit

Permalink
m68k/macboing: Fix missed timer callback assignment
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kees authored and KAGA-KOKO committed Nov 24, 2017
1 parent 866c9b9 commit 54b8a23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/m68k/mac/macboing.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ static unsigned long mac_bell_phasepersample;
static void mac_init_asc( void );
static void mac_nosound(struct timer_list *);
static void mac_quadra_start_bell( unsigned int, unsigned int, unsigned int );
static void mac_quadra_ring_bell( unsigned long );
static void mac_quadra_ring_bell(struct timer_list *);
static void mac_av_start_bell( unsigned int, unsigned int, unsigned int );
static void ( *mac_special_bell )( unsigned int, unsigned int, unsigned int );

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

0 comments on commit 54b8a23

Please sign in to comment.