GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / arm / mach-nuc93x / clock.h
bloba278365c4c26e224bb1d11cecab29e2ab3ceb317
1 /*
2 * linux/arch/arm/mach-nuc93x/clock.h
4 * Copyright (c) 2008 Nuvoton technology corporation
6 * Wan ZongShun <mcuos.com@gmail.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License.
13 #include <asm/clkdev.h>
15 void nuc93x_clk_enable(struct clk *clk, int enable);
16 void clks_register(struct clk_lookup *clks, size_t num);
18 struct clk {
19 unsigned long cken;
20 unsigned int enabled;
21 void (*enable)(struct clk *, int enable);
24 #define DEFINE_CLK(_name, _ctrlbit) \
25 struct clk clk_##_name = { \
26 .enable = nuc93x_clk_enable, \
27 .cken = (1 << _ctrlbit), \
30 #define DEF_CLKLOOK(_clk, _devname, _conname) \
31 { \
32 .clk = _clk, \
33 .dev_id = _devname, \
34 .con_id = _conname, \