diff options
| author | Lukas Bulwahn <lukas.bulwahn@redhat.com> | 2026-02-03 12:01:01 +0300 |
|---|---|---|
| committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2026-02-05 11:57:17 +0300 |
| commit | a6ab150deb4b740334721d18e02ad400a9d888f5 (patch) | |
| tree | 54c1db0d232904ae0db5d373c781cd30e112cc3a | |
| parent | e4ec36bf7bc7023e1d207b1277755b0da381f20f (diff) | |
| download | linux-a6ab150deb4b740334721d18e02ad400a9d888f5.tar.xz | |
clk: microchip: fix typo in reference to a config option
Commit 026d70dcfe5d ("clk: microchip: core: allow driver to be compiled
with COMPILE_TEST") introduces a typo when referring to a config option in
an ifdef directive.
Fix this typo.
Fixes: 026d70dcfe5d ("clk: microchip: core: allow driver to be compiled with COMPILE_TEST")
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com>
Reviewed-by: Brian Masney <bmasney@redhat.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
| -rw-r--r-- | drivers/clk/microchip/clk-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/microchip/clk-core.c b/drivers/clk/microchip/clk-core.c index ce3a24e061d1..8200f4864a36 100644 --- a/drivers/clk/microchip/clk-core.c +++ b/drivers/clk/microchip/clk-core.c @@ -75,7 +75,7 @@ /* SoC specific clock needed during SPLL clock rate switch */ static struct clk_hw *pic32_sclk_hw; -#ifdef CONFIG_MATCH_PIC32 +#ifdef CONFIG_MACH_PIC32 /* add instruction pipeline delay while CPU clock is in-transition. */ #define cpu_nop5() \ do { \ |
