mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
dc6048c7f9
Add a table for clocks to be defined statically, so that new clocks can be added without having to call nmdk_clk_create() for each of them. Remove the now unused nmdk_clk_create() function. Acked-by: Alessandro Rubini <rubini@unipv.it> Acked-by: Linus Walleij <linus.walleij@stericsson.com> Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
14 lines
320 B
C
14 lines
320 B
C
|
|
/*
|
|
* linux/arch/arm/mach-nomadik/clock.h
|
|
*
|
|
* Copyright (C) 2009 Alessandro Rubini
|
|
*
|
|
* 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 clk {
|
|
unsigned long rate;
|
|
};
|