https://github.com/torvalds/linux
Raw File
Tip revision: a937536b868b8369b98967929045f1df54234323 authored by Linus Torvalds on 17 March 2013, 22:59:32 UTC
Linux 3.9-rc3
Tip revision: a937536
clk-icst.h
#include <asm/hardware/icst.h>

/**
 * struct clk_icst_desc - descriptor for the ICST VCO
 * @params: ICST parameters
 * @vco_offset: offset to the ICST VCO from the provided memory base
 * @lock_offset: offset to the ICST VCO locking register from the provided
 *	memory base
 */
struct clk_icst_desc {
	const struct icst_params *params;
	u32 vco_offset;
	u32 lock_offset;
};

struct clk *icst_clk_register(struct device *dev,
			      const struct clk_icst_desc *desc,
			      void __iomem *base);
back to top