spi: rzv2m-csi: Adopt HZ_PER_MHZ for max spi clock
authorFabrizio Castro <fabrizio.castro.jz@renesas.com>
Sat, 15 Jul 2023 01:03:59 +0000 (02:03 +0100)
committerMark Brown <broonie@kernel.org>
Mon, 17 Jul 2023 11:41:41 +0000 (12:41 +0100)
Make use of HZ_PER_MHZ for CSI_MAX_SPI_SCKO to make it clear
what its value means.

Signed-off-by: Fabrizio Castro <fabrizio.castro.jz@renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Link: https://lore.kernel.org/r/20230715010407.1751715-3-fabrizio.castro.jz@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-rzv2m-csi.c

index b595f3b7294d8633d424f4b7ac791fa73e573045..3931045a85eb522f7c5e2f02a1788c6e34a70f1d 100644 (file)
@@ -13,6 +13,7 @@
 #include <linux/platform_device.h>
 #include <linux/reset.h>
 #include <linux/spi/spi.h>
+#include <linux/units.h>
 
 /* Registers */
 #define CSI_MODE               0x00    /* CSI mode control */
@@ -71,7 +72,7 @@
 #define TX_TIMEOUT_ERROR       BIT(2)
 #define RX_TIMEOUT_ERROR       BIT(3)
 
-#define CSI_MAX_SPI_SCKO       8000000
+#define CSI_MAX_SPI_SCKO       (8 * HZ_PER_MHZ)
 
 struct rzv2m_csi_priv {
        void __iomem *base;