mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	Upcoming change to DT compiler is going to complain about nodes which have a reg property, but have not defined the address in their name. This patch fixes following type of warnings for OMAP4 clock nodes: Warning (unit_address_vs_reg): Node /ocp/cm@48004000/clocks/dpll3_m2_ck has a reg or ranges property, but no unit name Signed-off-by: Tero Kristo <t-kristo@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			465 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			465 B
		
	
	
	
		
			Text
		
	
	
	
	
	
/*
 | 
						|
 * Device Tree Source for OMAP4 clock data
 | 
						|
 *
 | 
						|
 * Copyright (C) 2013 Texas Instruments, Inc.
 | 
						|
 *
 | 
						|
 * This program is free software; you can redistribute it and/or modify
 | 
						|
 * it under the terms of the GNU General Public License version 2 as
 | 
						|
 * published by the Free Software Foundation.
 | 
						|
 */
 | 
						|
&prm_clocks {
 | 
						|
	bandgap_fclk: bandgap_fclk@1888 {
 | 
						|
		#clock-cells = <0>;
 | 
						|
		compatible = "ti,gate-clock";
 | 
						|
		clocks = <&sys_32k_ck>;
 | 
						|
		ti,bit-shift = <8>;
 | 
						|
		reg = <0x1888>;
 | 
						|
	};
 | 
						|
};
 |