mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-19 05:04:20 +00:00
spi: rspi: Constify platform_device_id
The platform_device_id is not modified by the driver and core uses it as const. Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
b787f68c36
commit
8634dafac6
1 changed files with 1 additions and 1 deletions
|
@ -1300,7 +1300,7 @@ error1:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct platform_device_id spi_driver_ids[] = {
|
static const struct platform_device_id spi_driver_ids[] = {
|
||||||
{ "rspi", (kernel_ulong_t)&rspi_ops },
|
{ "rspi", (kernel_ulong_t)&rspi_ops },
|
||||||
{ "rspi-rz", (kernel_ulong_t)&rspi_rz_ops },
|
{ "rspi-rz", (kernel_ulong_t)&rspi_rz_ops },
|
||||||
{ "qspi", (kernel_ulong_t)&qspi_ops },
|
{ "qspi", (kernel_ulong_t)&qspi_ops },
|
||||||
|
|
Loading…
Add table
Reference in a new issue