aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-imx/devices/devices.c
blob: cd72f0894196c3bb5318a86e5231dda83a106d89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Copyright 2008 Sascha Hauer, kernel@pengutronix.de
 */

#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/err.h>
#include <linux/platform_device.h>

#include "../common.h"
#include "devices-common.h"

struct device mxc_aips_bus = {
	.init_name	= "mxc_aips",
};

struct device mxc_ahb_bus = {
	.init_name	= "mxc_ahb",
};

int __init mxc_device_init(void)
{
	int ret;

	ret = device_register(&mxc_aips_bus);
	if (ret < 0)
		goto done;

	ret = device_register(&mxc_ahb_bus);

done:
	return ret;
}