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

Commit ec588ae6 authored by Jarkko Nikula's avatar Jarkko Nikula Committed by Liam Girdwood
Browse files

ASoC: omap: Remove needless prints from machine drivers



It is currently completely normal to execute these machine drivers code on
different boards if the kernel includes support for multiple boards so no
error message should be printed if the machine_is_xxx does not match with
the machine driver.

Therefore remove these pr_err and pr_debug prints in those cases.

Signed-off-by: default avatarJarkko Nikula <jhnikula@gmail.com>
Acked-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarLiam Girdwood <lrg@slimlogic.co.uk>
parent ad5e4655
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -157,10 +157,8 @@ static int __init am3517evm_soc_init(void)
{
	int ret;

	if (!machine_is_omap3517evm()) {
		pr_err("Not OMAP3517 / AM3517 EVM!\n");
	if (!machine_is_omap3517evm())
		return -ENODEV;
	}
	pr_info("OMAP3517 / AM3517 EVM SoC init\n");

	am3517evm_snd_device = platform_device_alloc("soc-audio", -1);
+1 −3
Original line number Diff line number Diff line
@@ -101,10 +101,8 @@ static int __init igep2_soc_init(void)
{
	int ret;

	if (!machine_is_igep0020()) {
		pr_debug("Not IGEP v2!\n");
	if (!machine_is_igep0020())
		return -ENODEV;
	}
	printk(KERN_INFO "IGEP v2 SoC init\n");

	igep2_snd_device = platform_device_alloc("soc-audio", -1);
+1 −3
Original line number Diff line number Diff line
@@ -103,10 +103,8 @@ static int __init omap2evm_soc_init(void)
{
	int ret;

	if (!machine_is_omap2evm()) {
		pr_debug("Not omap2evm!\n");
	if (!machine_is_omap2evm())
		return -ENODEV;
	}
	printk(KERN_INFO "omap2evm SoC init\n");

	omap2evm_snd_device = platform_device_alloc("soc-audio", -1);
+1 −3
Original line number Diff line number Diff line
@@ -112,10 +112,8 @@ static int __init omap3beagle_soc_init(void)
{
	int ret;

	if (!(machine_is_omap3_beagle() || machine_is_devkit8000())) {
		pr_debug("Not OMAP3 Beagle or Devkit8000!\n");
	if (!(machine_is_omap3_beagle() || machine_is_devkit8000()))
		return -ENODEV;
	}
	pr_info("OMAP3 Beagle/Devkit8000 SoC init\n");

	omap3beagle_snd_device = platform_device_alloc("soc-audio", -1);
+1 −3
Original line number Diff line number Diff line
@@ -99,10 +99,8 @@ static int __init omap3evm_soc_init(void)
{
	int ret;

	if (!machine_is_omap3evm()) {
		pr_err("Not OMAP3 EVM!\n");
	if (!machine_is_omap3evm())
		return -ENODEV;
	}
	pr_info("OMAP3 EVM SoC init\n");

	omap3evm_snd_device = platform_device_alloc("soc-audio", -1);
Loading