mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
e657bcf6db
mach/setup.h and mach/devices.h are only needed from inside of mach-ux500 now, so we can simply move them out of the include/mach directory. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
27 lines
558 B
C
27 lines
558 B
C
/*
|
|
* 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>
|
|
|
|
#include "setup.h"
|
|
|
|
#include "db8500-regs.h"
|
|
|
|
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);
|
|
}
|
|
}
|