mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			673 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			673 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From 6f72aea69951479b7daad1d38b506ede4f8a1676 Mon Sep 17 00:00:00 2001
 | |
| From: John Crispin <blogic@openwrt.org>
 | |
| Date: Sun, 16 Mar 2014 04:38:07 +0000
 | |
| Subject: [PATCH 105/133] MIPS: ralink: add missing clk_set_rate() to clk.c
 | |
| 
 | |
| Signed-off-by: John Crispin <blogic@openwrt.org>
 | |
| ---
 | |
|  arch/mips/ralink/clk.c |    6 ++++++
 | |
|  1 file changed, 6 insertions(+)
 | |
| 
 | |
| --- a/arch/mips/ralink/clk.c
 | |
| +++ b/arch/mips/ralink/clk.c
 | |
| @@ -56,6 +56,12 @@ unsigned long clk_get_rate(struct clk *c
 | |
|  }
 | |
|  EXPORT_SYMBOL_GPL(clk_get_rate);
 | |
|  
 | |
| +int clk_set_rate(struct clk *clk, unsigned long rate)
 | |
| +{
 | |
| +	return -1;
 | |
| +}
 | |
| +EXPORT_SYMBOL_GPL(clk_set_rate);
 | |
| +
 | |
|  void __init plat_time_init(void)
 | |
|  {
 | |
|  	struct clk *clk;
 |