Commit 5c8f9d94 authored by Magnus Damm's avatar Magnus Damm Committed by Paul Mundt

sh: Add arch_flags to struct clk

Add arch_flags to struct clk so we can keep per-clock private data
somewhere and share code between multiple clocks.
Signed-off-by: default avatarMagnus Damm <damm@igel.co.jp>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent c46acb8e
...@@ -30,6 +30,7 @@ struct clk { ...@@ -30,6 +30,7 @@ struct clk {
unsigned long rate; unsigned long rate;
unsigned long flags; unsigned long flags;
unsigned long arch_flags;
}; };
#define CLK_ALWAYS_ENABLED (1 << 0) #define CLK_ALWAYS_ENABLED (1 << 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment