clock.c (92fd4d4d67b945c0766416284d4ab236b31542c4) | clock.c (6d803ba736abb5e122dede70a4720e4843dd6df4) |
---|---|
1/* 2 * arch/arm/mach-ep93xx/clock.c 3 * Clock control for Cirrus EP93xx chips. 4 * 5 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by --- 5 unchanged lines hidden (view full) --- 14 15#include <linux/kernel.h> 16#include <linux/clk.h> 17#include <linux/err.h> 18#include <linux/module.h> 19#include <linux/string.h> 20#include <linux/io.h> 21#include <linux/spinlock.h> | 1/* 2 * arch/arm/mach-ep93xx/clock.c 3 * Clock control for Cirrus EP93xx chips. 4 * 5 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by --- 5 unchanged lines hidden (view full) --- 14 15#include <linux/kernel.h> 16#include <linux/clk.h> 17#include <linux/err.h> 18#include <linux/module.h> 19#include <linux/string.h> 20#include <linux/io.h> 21#include <linux/spinlock.h> |
22#include <linux/clkdev.h> |
|
22 23#include <mach/hardware.h> 24 | 23 24#include <mach/hardware.h> 25 |
25#include <asm/clkdev.h> | |
26#include <asm/div64.h> 27 28 29struct clk { 30 struct clk *parent; 31 unsigned long rate; 32 int users; 33 int sw_locked; --- 529 unchanged lines hidden --- | 26#include <asm/div64.h> 27 28 29struct clk { 30 struct clk *parent; 31 unsigned long rate; 32 int users; 33 int sw_locked; --- 529 unchanged lines hidden --- |