mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
a5e34fc0b6
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>
13 lines
251 B
C
13 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 */
|