Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
devices.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) ST-Ericsson SA 2010
3  *
4  * Author: Rabin Vincent <[email protected]> for ST-Ericsson
5  * License terms: GNU General Public License (GPL) version 2
6  */
7 
8 #include <linux/kernel.h>
10 #include <linux/interrupt.h>
11 #include <linux/io.h>
12 #include <linux/amba/bus.h>
13 
14 #include <mach/hardware.h>
15 #include <mach/setup.h>
16 
17 void __init amba_add_devices(struct amba_device *devs[], int num)
18 {
19  int i;
20 
21  for (i = 0; i < num; i++) {
22  struct amba_device *d = devs[i];
24  }
25 }