| 
									
										
										
										
											2010-05-03 07:46:56 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (C) ST-Ericsson SA 2010 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson | 
					
						
							|  |  |  |  * License terms: GNU General Public License (GPL) version 2 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/platform_device.h>
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							|  |  |  | #include <linux/io.h>
 | 
					
						
							|  |  |  | #include <linux/amba/bus.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-21 22:51:12 +01:00
										 |  |  | #include "setup.h"
 | 
					
						
							| 
									
										
										
										
											2010-05-03 07:46:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 15:41:55 +01:00
										 |  |  | #include "db8500-regs.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-03 07:46:56 +01:00
										 |  |  | void __init amba_add_devices(struct amba_device *devs[], int num) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < num; i++) { | 
					
						
							|  |  |  | 		struct amba_device *d = devs[i]; | 
					
						
							|  |  |  | 		amba_device_register(d, &iomem_resource); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |