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

Commit b12fe725 authored by Sudip Mukherjee's avatar Sudip Mukherjee Committed by Mark Brown
Browse files

spi: butterfly: remove cast to void



checkpatch was complaining about space after cast. But the cast to void
is not required at that place.

Signed-off-by: default avatarSudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 1bfa91e9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -289,7 +289,7 @@ static void butterfly_attach(struct parport *p)
clean1:
	parport_unregister_device(pd);
clean0:
	(void) spi_master_put(pp->bitbang.master);
	spi_master_put(pp->bitbang.master);
done:
	pr_debug("%s: butterfly probe, fail %d\n", p->name, status);
}
@@ -317,7 +317,7 @@ static void butterfly_detach(struct parport *p)
	parport_release(pp->pd);
	parport_unregister_device(pp->pd);

	(void) spi_master_put(pp->bitbang.master);
	spi_master_put(pp->bitbang.master);
}

static struct parport_driver butterfly_driver = {