]> git.baikalelectronics.ru Git - kernel.git/commit
spi: bcm2835: Micro-optimise IRQ handler
authorRobin Murphy <robin.murphy@arm.com>
Tue, 16 Jun 2020 00:09:28 +0000 (01:09 +0100)
committerMark Brown <broonie@kernel.org>
Wed, 1 Jul 2020 21:19:30 +0000 (22:19 +0100)
commit55e6fea462483b0d57c637d1d1cc3d6837f15a99
tree3362abfc8151fd739cf80ced225fa89094249e78
parent1a731f1f909f9eff02baa23c0f7d0a30d554c373
spi: bcm2835: Micro-optimise IRQ handler

The IRQ handler only needs the struct spi_controller for the sake of
the completion at the end of a transfer. Passing the struct bcm2835_spi
directly as the IRQ data allows that level of indirection to be pushed
into the completion path for the reverse lookup, and avoided entirely
in all other cases.

This saves one explicit load in the critical path, plus (for a GCC 8.3
build) two registers worth of stack frame overhead.

Signed-off-by: Robin Murphy <robin.murphy@arm.com>
Link: https://lore.kernel.org/r/6b401cb521539caffab21f05b4c8cba6c9d27c6e.1592261248.git.robin.murphy@arm.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-bcm2835.c