mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 52581c718c
			
		
	
	
		52581c718c
		
	
	
	
	
		
			
			Header guard symbols should match their file name to make guard collisions less likely. Cleaned up with scripts/clean-header-guards.pl, followed by some renaming of new guard symbols picked by the script to better ones. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20220506134911.2856099-2-armbru@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> [Change to generated file ebpf/rss.bpf.skeleton.h backed out]
		
			
				
	
	
		
			20 lines
		
	
	
		
			346 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			346 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QEMU sun4v Real Time Clock device
 | |
|  *
 | |
|  * The sun4v_rtc device (sun4v tod clock)
 | |
|  *
 | |
|  * Copyright (c) 2016 Artyom Tarasenko
 | |
|  *
 | |
|  * This code is licensed under the GNU GPL v3 or (at your option) any later
 | |
|  * version.
 | |
|  */
 | |
| 
 | |
| #ifndef HW_RTC_SUN4V_RTC_H
 | |
| #define HW_RTC_SUN4V_RTC_H
 | |
| 
 | |
| #include "exec/hwaddr.h"
 | |
| 
 | |
| void sun4v_rtc_init(hwaddr addr);
 | |
| 
 | |
| #endif
 |