diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-11-30 17:27:20 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-11-30 17:27:20 +0000 |
commit | 4ab08ecfbc68960ecfb268bac30c57f838fa414e (patch) | |
tree | 31d9a282938d938d9273c0b39ad2bfef1c0219d1 /arch/arm/mach-aaec2000/clock.h | |
parent | eefc842a6e1de128fbdc9214b9f178a2e238fb7b (diff) |
[ARM] aaec2000: convert to simple clk API
aaec2000 only uses the clk API for the framebuffer, so there's
no point having a complicated implementation.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-aaec2000/clock.h')
-rw-r--r-- | arch/arm/mach-aaec2000/clock.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/arch/arm/mach-aaec2000/clock.h b/arch/arm/mach-aaec2000/clock.h deleted file mode 100644 index d4bb74ff613..00000000000 --- a/arch/arm/mach-aaec2000/clock.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * linux/arch/arm/mach-aaec2000/clock.h - * - * Copyright (C) 2005 Nicolas Bellido Y Ortega - * - * Based on linux/arch/arm/mach-integrator/clock.h - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - */ -struct module; - -struct clk { - struct list_head node; - unsigned long rate; - struct module *owner; - const char *name; - void *data; -}; - -int clk_register(struct clk *clk); -void clk_unregister(struct clk *clk); |