mirror of https://gitee.com/openkylin/linux.git
Merge remote-tracking branches 'spi/fix/img-spfi' and 'spi/fix/msiof' into spi-linus
This commit is contained in:
commit
ee4629f5b2
|
@ -480,6 +480,8 @@ static int sh_msiof_spi_setup(struct spi_device *spi)
|
||||||
struct device_node *np = spi->master->dev.of_node;
|
struct device_node *np = spi->master->dev.of_node;
|
||||||
struct sh_msiof_spi_priv *p = spi_master_get_devdata(spi->master);
|
struct sh_msiof_spi_priv *p = spi_master_get_devdata(spi->master);
|
||||||
|
|
||||||
|
pm_runtime_get_sync(&p->pdev->dev);
|
||||||
|
|
||||||
if (!np) {
|
if (!np) {
|
||||||
/*
|
/*
|
||||||
* Use spi->controller_data for CS (same strategy as spi_gpio),
|
* Use spi->controller_data for CS (same strategy as spi_gpio),
|
||||||
|
@ -498,6 +500,9 @@ static int sh_msiof_spi_setup(struct spi_device *spi)
|
||||||
if (spi->cs_gpio >= 0)
|
if (spi->cs_gpio >= 0)
|
||||||
gpio_set_value(spi->cs_gpio, !(spi->mode & SPI_CS_HIGH));
|
gpio_set_value(spi->cs_gpio, !(spi->mode & SPI_CS_HIGH));
|
||||||
|
|
||||||
|
|
||||||
|
pm_runtime_put_sync(&p->pdev->dev);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue