mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-11-03 18:01:41 +01:00 
			
		
		
		
	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>
		
			
				
	
	
		
			14 lines
		
	
	
		
			251 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			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 */
 |