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

Commit 15e87051 authored by Mike Frysinger's avatar Mike Frysinger Committed by Mark Brown
Browse files

ASoC: AD1836: drop unnecessary spi register check



The only thing the init func does is register a spi driver, so if that
fails, we return the value back up to the caller who will display an
error message for us.  So drop the redundant checking/message.

Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
Acked-by: default avatarLiam Girdwood <lrg@ti.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 42f32c55
Loading
Loading
Loading
Loading
+1 −9
Original line number Diff line number Diff line
@@ -385,15 +385,7 @@ static struct spi_driver ad1836_spi_driver = {

static int __init ad1836_init(void)
{
	int ret;

	ret = spi_register_driver(&ad1836_spi_driver);
	if (ret != 0) {
		printk(KERN_ERR "Failed to register ad1836 SPI driver: %d\n",
				ret);
	}

	return ret;
	return spi_register_driver(&ad1836_spi_driver);
}
module_init(ad1836_init);