Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 146613
b: refs/heads/master
c: 28fde68
h: refs/heads/master
i:
  146611: e9c3a29
v: v3
  • Loading branch information
Magnus Damm authored and Paul Mundt committed Apr 19, 2009
1 parent 801588d commit 1e9bcdf
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 87a00dc059e3af46303f1f56b0e8df41af988c7b
refs/heads/master: 28fde6863e6ed1f4bfb7cef080e67bf439c20628
10 changes: 10 additions & 0 deletions trunk/arch/sh/kernel/cpu/sh4a/setup-sh7343.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,

Expand Down
10 changes: 10 additions & 0 deletions trunk/arch/sh/kernel/cpu/sh4a/setup-sh7366.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,

Expand Down
10 changes: 10 additions & 0 deletions trunk/arch/sh/kernel/cpu/sh4a/setup-sh7722.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,

Expand Down
10 changes: 10 additions & 0 deletions trunk/arch/sh/kernel/cpu/sh4a/setup-sh7723.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,

Expand Down

0 comments on commit 1e9bcdf

Please sign in to comment.