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: Magnus Damm <damm@igel.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
Magnus Damm 2008-07-17 18:48:57 +09:00 committed by Paul Mundt
parent c46acb8e20
commit 5c8f9d94fe
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@ struct clk {
unsigned long rate;
unsigned long flags;
unsigned long arch_flags;
};
#define CLK_ALWAYS_ENABLED (1 << 0)