mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 08:26:29 +00:00 
			
		
		
		
	 1ed8d58fcb
			
		
	
	
		1ed8d58fcb
		
	
	
	
	
		
			
			Signed-off-by: Daniel Walker <dwalker@codeaurora.org> Signed-off-by: David Brown <davidb@codeaurora.org> Signed-off-by: Gregory Bean <gbean@codeaurora.org> Signed-off-by: Abhijeet Dharmapurikar <adharmap@codeaurora.org> Signed-off-by: Stepan Moskovchenko <stepanm@codeaurora.org>
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* linux/arch/arm/mach-msm/devices.h
 | |
|  *
 | |
|  * Copyright (C) 2008 Google, Inc.
 | |
|  *
 | |
|  * This software is licensed under the terms of the GNU General Public
 | |
|  * License version 2, as published by the Free Software Foundation, and
 | |
|  * may be copied, distributed, and modified under those terms.
 | |
|  *
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU General Public License for more details.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef __ARCH_ARM_MACH_MSM_DEVICES_H
 | |
| #define __ARCH_ARM_MACH_MSM_DEVICES_H
 | |
| 
 | |
| #include "clock.h"
 | |
| 
 | |
| extern struct platform_device msm_device_uart1;
 | |
| extern struct platform_device msm_device_uart2;
 | |
| extern struct platform_device msm_device_uart3;
 | |
| 
 | |
| extern struct platform_device msm_device_sdc1;
 | |
| extern struct platform_device msm_device_sdc2;
 | |
| extern struct platform_device msm_device_sdc3;
 | |
| extern struct platform_device msm_device_sdc4;
 | |
| 
 | |
| extern struct platform_device msm_device_hsusb;
 | |
| 
 | |
| extern struct platform_device msm_device_i2c;
 | |
| 
 | |
| extern struct platform_device msm_device_smd;
 | |
| 
 | |
| extern struct platform_device msm_device_nand;
 | |
| 
 | |
| extern struct clk msm_clocks_7x01a[];
 | |
| extern unsigned msm_num_clocks_7x01a;
 | |
| 
 | |
| extern struct clk msm_clocks_7x30[];
 | |
| extern unsigned msm_num_clocks_7x30;
 | |
| 
 | |
| extern struct clk msm_clocks_8x50[];
 | |
| extern unsigned msm_num_clocks_8x50;
 | |
| 
 | |
| #endif
 |