diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-01-05 11:32:50 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-01-22 00:06:53 +0000 |
commit | 6df534cc7136fc9e023cbd4e0011a04e3659e74d (patch) | |
tree | 053cdf919817f3b4cb12db3d318fe020ab75382c /include/linux/spi/spi.h | |
parent | 4247d7f2ca564bbede54054da1f35a359bb061bd (diff) |
spi: make spi_bus_type const
Now that the driver core can properly handle constant struct bus_type,
move the spi_bus_type variable to be a constant structure as well,
placing it into read-only memory which can not be modified at runtime.
Cc: Mark Brown <broonie@kernel.org>
Cc: <linux-spi@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://msgid.link/r/2024010549-erasure-swoop-1cc6@gregkh
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/linux/spi/spi.h')
-rw-r--r-- | include/linux/spi/spi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index 471fe2ff9066..f306aececeaf 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h @@ -36,7 +36,7 @@ struct spi_message; * INTERFACES between SPI master-side drivers and SPI slave protocol handlers, * and SPI infrastructure. */ -extern struct bus_type spi_bus_type; +extern const struct bus_type spi_bus_type; /** * struct spi_statistics - statistics for spi transfers |