mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
Input: pxspad - follow renaming of SPI "master" to "controller"
In commit 8caab75fd2
("spi: Generalize SPI "master" to "controller"")
some functions and struct members were renamed. To not break all drivers
compatibility macros were provided.
To be able to remove these compatibility macros push the renaming into
this driver.
Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/820fa151077dc192391d546aec35328680803f9f.1707324794.git.u.kleine-koenig@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
2780e7b716
commit
a78acec53b
@ -342,8 +342,8 @@ static int psxpad_spi_probe(struct spi_device *spi)
|
||||
spi->mode = SPI_MODE_3;
|
||||
spi->bits_per_word = 8;
|
||||
/* (PlayStation 1/2 joypad might be possible works 250kHz/500kHz) */
|
||||
spi->master->min_speed_hz = 125000;
|
||||
spi->master->max_speed_hz = 125000;
|
||||
spi->controller->min_speed_hz = 125000;
|
||||
spi->controller->max_speed_hz = 125000;
|
||||
spi_setup(spi);
|
||||
|
||||
/* pad settings */
|
||||
|
Loading…
Reference in New Issue
Block a user