Merge pull request #1995 from VOGL-electronic/soc_spi_master_int

soc: add_spi_master: make spi_clk_freq an int
This commit is contained in:
enjoy-digital 2024-06-19 19:34:31 +02:00 committed by GitHub
commit f40f63ae29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -1973,6 +1973,8 @@ class LiteXSoC(SoC):
self.check_if_exists(f"{name}")
spi_clk_freq = int(spi_clk_freq)
if pads is None:
pads = self.platform.request(name)