blob: ea0a2f92ca70875ff0716722f35fbd3dc45a91dd [file] [log] [blame]
Rabin Vincentd48fd002010-05-03 07:46:56 +01001/*
2 * Copyright (C) ST-Ericsson SA 2010
3 *
4 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
5 * License terms: GNU General Public License (GPL) version 2
6 */
7
8#include <linux/kernel.h>
9#include <linux/platform_device.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
Rabin Vincentd48fd002010-05-03 07:46:56 +010017void __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];
23 amba_device_register(d, &iomem_resource);
24 }
25}