Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 28fde686 authored by Magnus Damm's avatar Magnus Damm Committed by Paul Mundt
Browse files

sh: Early Platform Data for SuperH Mobile



Use plat_early_device_setup() to register Early Platform Data
for SuperH Mobile processors.

Signed-off-by: default avatarMagnus Damm <damm@igel.co.jp>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 87a00dc0
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -234,6 +234,16 @@ static int __init sh7343_devices_setup(void)
}
__initcall(sh7343_devices_setup);

static struct platform_device *sh7343_early_devices[] __initdata = {
	&cmt_device,
};

void __init plat_early_device_setup(void)
{
	early_platform_add_devices(sh7343_early_devices,
				   ARRAY_SIZE(sh7343_early_devices));
}

enum {
	UNUSED = 0,

+10 −0
Original line number Diff line number Diff line
@@ -226,6 +226,16 @@ static int __init sh7366_devices_setup(void)
}
__initcall(sh7366_devices_setup);

static struct platform_device *sh7366_early_devices[] __initdata = {
	&cmt_device,
};

void __init plat_early_device_setup(void)
{
	early_platform_add_devices(sh7366_early_devices,
				   ARRAY_SIZE(sh7366_early_devices));
}

enum {
	UNUSED=0,

+10 −0
Original line number Diff line number Diff line
@@ -270,6 +270,16 @@ static int __init sh7722_devices_setup(void)
}
__initcall(sh7722_devices_setup);

static struct platform_device *sh7722_early_devices[] __initdata = {
	&cmt_device,
};

void __init plat_early_device_setup(void)
{
	early_platform_add_devices(sh7722_early_devices,
				   ARRAY_SIZE(sh7722_early_devices));
}

enum {
	UNUSED=0,

+10 −0
Original line number Diff line number Diff line
@@ -281,6 +281,16 @@ static int __init sh7723_devices_setup(void)
}
__initcall(sh7723_devices_setup);

static struct platform_device *sh7723_early_devices[] __initdata = {
	&cmt_device,
};

void __init plat_early_device_setup(void)
{
	early_platform_add_devices(sh7723_early_devices,
				   ARRAY_SIZE(sh7723_early_devices));
}

enum {
	UNUSED=0,