Re: [PATCH 36/48] cpufreq: pxa3: move clk register access to clk driver

2022-04-22 Thread Stephen Boyd
Quoting Arnd Bergmann (2022-04-19 09:37:58) > diff --git a/include/linux/clk/pxa.h b/include/linux/clk/pxa.h > new file mode 100644 > index ..e5516c608c99 > --- /dev/null > +++ b/include/linux/clk/pxa.h > @@ -0,0 +1,9 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > + > +#ifdef CONFI

[PATCH 36/48] cpufreq: pxa3: move clk register access to clk driver

2022-04-19 Thread Arnd Bergmann
From: Arnd Bergmann The driver needs some low-level register access for setting the core and bus frequencies. These registers are owned by the clk driver, so move the low-level access into that driver with a slightly higher-level interface and avoid any machine header file dependencies. Cc: Mich