Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 280095
b: refs/heads/master
c: ea04018
h: refs/heads/master
i:
  280093: e5ecd79
  280091: a0d8b70
  280087: d0d43a6
  280079: 2653c3b
  280063: 1c30545
v: v3
  • Loading branch information
Kukjin Kim authored and Greg Kroah-Hartman committed Jan 6, 2012
1 parent 85e4693 commit 2d576aa
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: eea915bb0d1358755f151eaefb8208a2d5f3e10c
refs/heads/master: ea04018e6bc5ddb2f0466c0e5b986bd4901b7e8e
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-s3c2410/pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ arch_initcall(s3c2410_pm_drvinit);

static struct subsys_interface s3c2410a_pm_interface = {
.name = "s3c2410a_pm",
subsys = &s3c2410a_subsys,
.subsys = &s3c2410a_subsys,
.add_dev = s3c2410_pm_add,
};

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-s3c2412/pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ static struct subsys_interface s3c2412_pm_interface = {

static __init int s3c2412_pm_init(void)
{
return subsys_interface_register_register(&s3c2412_pm_interface);
return subsys_interface_register(&s3c2412_pm_interface);
}

arch_initcall(s3c2412_pm_init);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-s3c2440/s3c2442.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ static int s3c2442_clk_add(struct device *dev)
static struct subsys_interface s3c2442_clk_interface = {
.name = "s3c2442_clk",
.subsys = &s3c2442_subsys,
.add_dev s3c2442_clk_add,
.add_dev = s3c2442_clk_add,
};

static __init int s3c2442_clk_init(void)
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-s5p64x0/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ struct bus_type s5p64x0_subsys = {
.dev_name = "s5p64x0-core",
};

static struct device s5p64x0_subsys = {
static struct device s5p64x0_dev = {
.bus = &s5p64x0_subsys,
};

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-s5pc100/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,5 +166,5 @@ int __init s5pc100_init(void)
/* set idle function */
pm_idle = s5pc100_idle;

return device_register(&s5pc100_sys);
return device_register(&s5pc100_dev);
}

0 comments on commit 2d576aa

Please sign in to comment.