linux/drivers/net/fddi/skfp/smttimer.c

// SPDX-License-Identifier: GPL-2.0-or-later
/******************************************************************************
 *
 *	(C)Copyright 1998,1999 SysKonnect,
 *	a business unit of Schneider & Koch & Co. Datensysteme GmbH.
 *
 *	See the file "skfddi.c" for further information.
 *
 *	The information in this file is provided "AS IS" without warranty.
 *
 ******************************************************************************/

/*
	SMT timer
*/

#include "h/types.h"
#include "h/fddi.h"
#include "h/smc.h"

static void timer_done(struct s_smc *smc, int restart);

void smt_timer_init(struct s_smc *smc)
{}

void smt_timer_stop(struct s_smc *smc, struct smt_timer *timer)
{}

void smt_timer_start(struct s_smc *smc, struct smt_timer *timer, u_long time,
		     u_long token)
{}

void smt_force_irq(struct s_smc *smc)
{}

void smt_timer_done(struct s_smc *smc)
{}

static void timer_done(struct s_smc *smc, int restart)
{}