]> git.ipfire.org Git - thirdparty/linux.git/commit
spi: gpio: Use explicit 'unsigned int' for parameter types
authorDarshan Rathod <darshanrathod475@gmail.com>
Wed, 16 Jul 2025 09:59:05 +0000 (09:59 +0000)
committerMark Brown <broonie@kernel.org>
Wed, 16 Jul 2025 10:15:31 +0000 (11:15 +0100)
commitd929cc75e9791def049a90998aaab8934196131c
tree9546b3ac08a475ee1bfe887b5b4e5948d35282df
parentd5255ae7ec48ac1f702e95b472801dbb7bf1e97f
spi: gpio: Use explicit 'unsigned int' for parameter types

The C standard allows 'unsigned' as a shorthand for 'unsigned int'.
For improved code clarity and consistency with the prevailing kernel coding
style, replace the shorthand with the more explicit 'unsigned int' type
for function parameters.

This is a purely stylistic cleanup and has no functional impact on the
generated code.

Signed-off-by: Darshan Rathod <darshanrathod475@gmail.com>
Link: https://patch.msgid.link/20250716095906.21812-1-darshanrathod475@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-gpio.c