Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / arch / arm / mach-aaec2000 / clock.h
blobd4bb74ff613f7bae6c459d069f6de7816ef34300
1 /*
2 * linux/arch/arm/mach-aaec2000/clock.h
4 * Copyright (C) 2005 Nicolas Bellido Y Ortega
6 * Based on linux/arch/arm/mach-integrator/clock.h
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 struct module;
14 struct clk {
15 struct list_head node;
16 unsigned long rate;
17 struct module *owner;
18 const char *name;
19 void *data;
22 int clk_register(struct clk *clk);
23 void clk_unregister(struct clk *clk);