From: Vijaya Krishna Nivarthi Date: Tue, 25 Apr 2023 08:42:08 +0000 (+0530) Subject: spi: spi-geni-qcom: Correct CS_TOGGLE bit in SPI_TRANS_CFG X-Git-Tag: v6.5-rc1~170^2~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5fd7c99ecf45c8ee8a9b1268f0ffc91cc6271da2;p=thirdparty%2Fkernel%2Flinux.git spi: spi-geni-qcom: Correct CS_TOGGLE bit in SPI_TRANS_CFG The CS_TOGGLE bit when set is supposed to instruct FW to toggle CS line between words. The driver with intent of disabling this behaviour has been unsetting BIT(0). This has not caused any trouble so far because the original BIT(1) is untouched and BIT(0) likely wasn't being used. Correct this to prevent a potential future bug. Signed-off-by: Vijaya Krishna Nivarthi