blob: 78da2e7c3985041cec5de8a5f3a536ca08e9373e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* 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;
};
int __init clk_init(void);
|