]> git.baikalelectronics.ru Git - kernel.git/commit
spi: atmel: cleanup wait_for_completion return handling
authorNicholas Mc Guire <hofrat@osadl.org>
Mon, 2 Feb 2015 15:43:31 +0000 (10:43 -0500)
committerMark Brown <broonie@kernel.org>
Wed, 4 Feb 2015 11:26:03 +0000 (11:26 +0000)
commit8ef9b1b4649e1bcff63a714f2d13330f30e822e5
treec10c15c0ef9d0ca390db0b1384357ccc4441c206
parentbfa6fa2a2dfa997f6c80e35808e50464ecfebcda
spi: atmel: cleanup wait_for_completion return handling

return type of wait_for_completion_timeout is unsigned long not int, this
patch adds an appropriate variable and fixes up the assignment. It removes
the else branch as the only thing it was doing is assigning ret = 0; - but
ret is never used thereafter so that is not needed. As the string in
dev_err already states "timeout" there is little point in printing the 0.
A typo in "trasfer" -> transfer is also fixed.

Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-atmel.c