Skip to content

Commit 25e4d0f

Browse files
committed
Merge branch 'omap-for-v3.9/pm-fix' into omap-for-v3.9/pm-wfi-take2
2 parents 58a656b + 6efc3fe commit 25e4d0f

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

arch/arm/mach-omap2/am35xx-emac.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ static int __init omap_davinci_emac_dev_init(struct omap_hwmod *oh,
6262
{
6363
struct platform_device *pdev;
6464

65-
pdev = omap_device_build(oh->class->name, 0, oh, pdata, pdata_len,
66-
false);
65+
pdev = omap_device_build(oh->class->name, 0, oh, pdata, pdata_len);
6766
if (IS_ERR(pdev)) {
6867
WARN(1, "Can't build omap_device for %s:%s.\n",
6968
oh->class->name, oh->name);

arch/arm/mach-omap2/devices.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ static void __init omap_init_hdmi_audio(void)
382382
return;
383383
}
384384

385-
pdev = omap_device_build("omap-hdmi-audio-dai", -1, oh, NULL, 0, 0);
385+
pdev = omap_device_build("omap-hdmi-audio-dai", -1, oh, NULL, 0);
386386
WARN(IS_ERR(pdev),
387387
"Can't build omap_device for omap-hdmi-audio-dai.\n");
388388

arch/arm/mach-omap2/sr_device.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ static int __init sr_dev_init(struct omap_hwmod *oh, void *user)
152152

153153
sr_data->enable_on_init = sr_enable_on_init;
154154

155-
pdev = omap_device_build(name, i, oh, sr_data, sizeof(*sr_data), 0);
155+
pdev = omap_device_build(name, i, oh, sr_data, sizeof(*sr_data));
156156
if (IS_ERR(pdev))
157157
pr_warning("%s: Could not build omap_device for %s: %s.\n\n",
158158
__func__, name, oh->name);

0 commit comments

Comments
 (0)