2019-06-04 10:11:33 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2005-04-16 15:20:36 -07:00
|
|
|
/*
|
2008-08-02 10:55:55 +01:00
|
|
|
* arch/arm/include/asm/mach/time.h
|
2005-04-16 15:20:36 -07:00
|
|
|
*
|
|
|
|
* Copyright (C) 2004 MontaVista Software, Inc.
|
|
|
|
*/
|
|
|
|
#ifndef __ASM_ARM_MACH_TIME_H
|
|
|
|
#define __ASM_ARM_MACH_TIME_H
|
|
|
|
|
2006-10-06 10:53:39 -07:00
|
|
|
extern void timer_tick(void);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2015-04-01 20:34:26 -07:00
|
|
|
typedef void (*clock_access_fn)(struct timespec64 *);
|
2018-07-19 16:55:37 -04:00
|
|
|
extern int register_persistent_clock(clock_access_fn read_persistent);
|
2012-05-05 19:28:44 +01:00
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif
|