linux/drivers/pps/clients/pps-ktimer.c

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * pps-ktimer.c -- kernel timer test client
 *
 * Copyright (C) 2005-2006   Rodolfo Giometti <[email protected]>
 */

#define pr_fmt(fmt)

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/time.h>
#include <linux/timer.h>
#include <linux/pps_kernel.h>

/*
 * Global variables
 */

static struct pps_device *pps;
static struct timer_list ktimer;

/*
 * The kernel timer
 */

static void pps_ktimer_event(struct timer_list *unused)
{}

/*
 * The PPS info struct
 */

static struct pps_source_info pps_ktimer_info =;

/*
 * Module staff
 */

static void __exit pps_ktimer_exit(void)
{}

static int __init pps_ktimer_init(void)
{}

module_init();
module_exit(pps_ktimer_exit);

MODULE_AUTHOR();
MODULE_DESCRIPTION();
MODULE_LICENSE();