blob: f63a512190cbb3b493fd31c3cbd00b702effe3bc [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
Rabin Vincentd48fd002010-05-03 07:46:56 +010014#include <mach/setup.h>
15
Linus Walleij174e7792013-03-19 15:41:55 +010016#include "db8500-regs.h"
17
Rabin Vincentd48fd002010-05-03 07:46:56 +010018void __init amba_add_devices(struct amba_device *devs[], int num)
19{
20 int i;
21
22 for (i = 0; i < num; i++) {
23 struct amba_device *d = devs[i];
24 amba_device_register(d, &iomem_resource);
25 }
26}