diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2013-06-11 10:32:00 +0200 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2013-06-12 07:10:00 -0700 |
commit | 7252db5fef96b309f323abdfe574c6bf56115481 (patch) | |
tree | 778db4567bb714c91cf7d9207b595d409536bc68 /arch/arm/mach-omap2/devices.c | |
parent | 6d931cf8ba60eeceb957c180edecaa5f8aabf026 (diff) | |
download | talos-obmc-linux-7252db5fef96b309f323abdfe574c6bf56115481.tar.gz talos-obmc-linux-7252db5fef96b309f323abdfe574c6bf56115481.zip |
ARM: OMAP2+: devices: Do not print error when dss_hdmi hwmod lookup fails
The dss_hdmi hwmod is used to create the HDMI audio device for OMAP4+
When we boot the kernel we can silently ignore the failure since the IP
does not exist on them.
Reported-by: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/devices.c')
-rw-r--r-- | arch/arm/mach-omap2/devices.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index 8f268b4f443f..daa0ff65f599 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c @@ -417,10 +417,8 @@ static void __init omap_init_hdmi_audio(void) struct platform_device *pdev; oh = omap_hwmod_lookup("dss_hdmi"); - if (!oh) { - printk(KERN_ERR "Could not look up dss_hdmi hw_mod\n"); + if (!oh) return; - } pdev = omap_device_build("omap-hdmi-audio-dai", -1, oh, NULL, 0); WARN(IS_ERR(pdev), |