aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2023-01-11 14:15:22 +0000
committerMark Brown <broonie@kernel.org>2023-01-11 14:15:22 +0000
commitb442990d244ba2ffe926c6603c42deb6fcc3b0db (patch)
tree3ddd71cdf6d03700f0eea989654f3d0d871f6290 /drivers
parent6b35b173dbc1711f8d272e3f322d2ad697015919 (diff)
parente0fe6a31cac84735939c29d1e05055d58325c6c0 (diff)
downloadlinux-b442990d244ba2ffe926c6603c42deb6fcc3b0db.tar.gz
spi: Merge rename of spi-cs-setup-ns DT property
The newly added spi-cs-setup-ns doesn't really fit with the existing property names for delays, rename it so that it does before it makes it into a release and becomes ABI.
Diffstat (limited to 'drivers')
-rw-r--r--drivers/spi/spi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index 3cc7bb4d03decd..15f174f4e0561a 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -2310,7 +2310,7 @@ static int of_spi_parse_dt(struct spi_controller *ctlr, struct spi_device *spi,
if (!of_property_read_u32(nc, "spi-max-frequency", &value))
spi->max_speed_hz = value;
- if (!of_property_read_u16(nc, "spi-cs-setup-ns", &cs_setup)) {
+ if (!of_property_read_u16(nc, "spi-cs-setup-delay-ns", &cs_setup)) {
spi->cs_setup.value = cs_setup;
spi->cs_setup.unit = SPI_DELAY_UNIT_NSECS;
}