Message ID | E1cdLlT-0001JZ-6b@debutante (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Hi Mark, On Mon, Feb 13, 2017 at 06:54:19PM +0000, Mark Brown wrote: > The patch > > spi: s3c64xx: fix inconsistency between binding and driver > > has been applied to the spi tree at > > git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git you picked the v1 of the patch instead of the v2. Not much harm is done, though, as the only difference between the two was the commit id. Andi -- To unsubscribe from this list: send the line "unsubscribe linux-spi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c index 3c09e94cf827..186342b74141 100644 --- a/drivers/spi/spi-s3c64xx.c +++ b/drivers/spi/spi-s3c64xx.c @@ -1003,7 +1003,7 @@ static struct s3c64xx_spi_info *s3c64xx_spi_parse_dt(struct device *dev) sci->num_cs = temp; } - sci->no_cs = of_property_read_bool(dev->of_node, "broken-cs"); + sci->no_cs = of_property_read_bool(dev->of_node, "no-cs-readback"); return sci; }