Re: [PATCH RFC/RFT 1/6] clk: core: add support for generic big endian accesses

2019-04-08 Thread Stephen Boyd
Quoting Jonas Gorski (2019-04-08 03:20:34) > Add a generic flag to mark a clock as big endian register based, and add > accessors following these. I like the idea of getting rid of clk_readl() and clk_writel(), but I'd rather see that this flag is per-basic clk type instead of global to all clks.

[PATCH RFC/RFT 1/6] clk: core: add support for generic big endian accesses

2019-04-08 Thread Jonas Gorski
Add a generic flag to mark a clock as big endian register based, and add accessors following these. Signed-off-by: Jonas Gorski --- drivers/clk/clk.c| 1 + include/linux/clk-provider.h | 27 +++ 2 files changed, 28 insertions(+) diff --git a/drivers/clk/clk.