u-boot-brain/arch/arm/mach-bcmstb/include/mach/timer.h
Thomas Fitzsimmons a5e34fc0b6 board: arm: bcmstb: Declare get_ticks in timer.h
In an earlier proposed patch, bcmstb.c implemented timer_read_counter,
but it was updated to implement get_ticks instead.  This patch updates
the declaration in timer.h accordingly.

Signed-off-by: Thomas Fitzsimmons <fitzsim@fitzsim.org>
2018-08-24 13:20:19 -04:00

14 lines
251 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* (C) Copyright 2018 Cisco Systems, Inc.
*
* Author: Thomas Fitzsimmons <fitzsim@fitzsim.org>
*/
#ifndef _BCMSTB_TIMER_H
#define _BCMSTB_TIMER_H
uint64_t get_ticks(void);
#endif /* _BCMSTB_TIMER_H */