~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/arm/mach-pxa/clock.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include <linux/clkdev.h>
2
 
#include <linux/sysdev.h>
 
2
#include <linux/syscore_ops.h>
3
3
 
4
4
struct clkops {
5
5
        void                    (*enable)(struct clk *);
54
54
void clk_pxa2xx_cken_enable(struct clk *clk);
55
55
void clk_pxa2xx_cken_disable(struct clk *clk);
56
56
 
57
 
extern struct sysdev_class pxa2xx_clock_sysclass;
 
57
extern struct syscore_ops pxa2xx_clock_syscore_ops;
58
58
 
59
59
#if defined(CONFIG_PXA3xx) || defined(CONFIG_PXA95x)
60
60
#define DEFINE_PXA3_CKEN(_name, _cken, _rate, _delay)   \
74
74
extern void clk_pxa3xx_cken_enable(struct clk *);
75
75
extern void clk_pxa3xx_cken_disable(struct clk *);
76
76
 
77
 
extern struct sysdev_class pxa3xx_clock_sysclass;
 
77
extern struct syscore_ops pxa3xx_clock_syscore_ops;
 
78
 
78
79
#endif