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

Commit ba2274c6 authored by Felipe Balbi's avatar Felipe Balbi Committed by Luciano Coelho
Browse files

net: wl12xx: remove unnecessary prints



Those have little value. Remove those to
make the driver less noisy.

Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
Signed-off-by: default avatarLuciano Coelho <coelho@ti.com>
parent 4c4cdfa1
Loading
Loading
Loading
Loading
+1 −14
Original line number Diff line number Diff line
@@ -435,8 +435,6 @@ static int __devinit wl1271_probe(struct spi_device *spi)
	if (ret)
		goto out_irq;

	wl1271_notice("initialized");

	return 0;

 out_irq:
@@ -473,23 +471,12 @@ static struct spi_driver wl1271_spi_driver = {

static int __init wl1271_init(void)
{
	int ret;

	ret = spi_register_driver(&wl1271_spi_driver);
	if (ret < 0) {
		wl1271_error("failed to register spi driver: %d", ret);
		goto out;
	}

out:
	return ret;
	return spi_register_driver(&wl1271_spi_driver);
}

static void __exit wl1271_exit(void)
{
	spi_unregister_driver(&wl1271_spi_driver);

	wl1271_notice("unloaded");
}

module_init(wl1271_init);