blob: 0f9e52b95935f66d34b60810fe372e09445a5814 [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
Arnd Bergmanne657bcf2013-03-21 22:51:12 +010014#include "setup.h"
Rabin Vincentd48fd002010-05-03 07:46:56 +010015
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}