This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / arch / arm / mach-s3c2410 / clock.h
1 /*
2  * linux/arch/arm/mach-s3c2410/clock.h
3  *
4  * Copyright (c) 2004 Simtec Electronics
5  * Written by Ben Dooks, <ben@simtec.co.uk>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10 */
11
12 struct clk {
13         struct list_head      list;
14         struct module        *owner;
15         struct clk           *parent;
16         const char           *name;
17         atomic_t              used;
18         unsigned long         rate;
19         unsigned long         ctrlbit;
20 };