swh:1:snp:c2847dfd741eae21606027cf29250d1ebcd63fb4
Raw File
Tip revision: 374576a8b6f865022c0fd1ca62396889b23d66dd authored by Linus Torvalds on 05 October 2009, 00:12:30 UTC
Linux 2.6.32-rc3
Tip revision: 374576a
clock.h
/*
 *  linux/arch/arm/mach-realview/clock.h
 *
 *  Copyright (C) 2004 ARM Limited.
 *  Written by Deep Blue Solutions Limited.
 *
 * 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 icst307_params;

struct clk {
	unsigned long		rate;
	const struct icst307_params *params;
	void			*data;
	void			(*setvco)(struct clk *, struct icst307_vco vco);
};
back to top