 f05a68653e
			
		
	
	
	f05a68653e
	
	
	
		
			
			Drop extern for all prototypes and adjust alignment of parameters as required after the removal. In a few rare cases adjust linelength to conform to maximum 80 chars, and likewise in a few rare cases adjust alignment of parameters to static functions. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			659 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			659 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /* timer.h: System timer definitions for sun5.
 | |
|  *
 | |
|  * Copyright (C) 1997, 2008 David S. Miller (davem@davemloft.net)
 | |
|  */
 | |
| 
 | |
| #ifndef _SPARC64_TIMER_H
 | |
| #define _SPARC64_TIMER_H
 | |
| 
 | |
| #include <linux/types.h>
 | |
| #include <linux/init.h>
 | |
| 
 | |
| struct sparc64_tick_ops {
 | |
| 	unsigned long long (*get_tick)(void);
 | |
| 	int (*add_compare)(unsigned long);
 | |
| 	unsigned long softint_mask;
 | |
| 	void (*disable_irq)(void);
 | |
| 
 | |
| 	void (*init_tick)(void);
 | |
| 	unsigned long (*add_tick)(unsigned long);
 | |
| 
 | |
| 	char *name;
 | |
| };
 | |
| 
 | |
| extern struct sparc64_tick_ops *tick_ops;
 | |
| 
 | |
| unsigned long sparc64_get_clock_tick(unsigned int cpu);
 | |
| void setup_sparc64_timer(void);
 | |
| void __init time_init(void);
 | |
| 
 | |
| #endif /* _SPARC64_TIMER_H */
 |