Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions | Variables
clk-fixed-factor.c File Reference
#include <linux/module.h>
#include <linux/clk-provider.h>
#include <linux/slab.h>
#include <linux/err.h>

Go to the source code of this file.

Macros

#define to_clk_fixed_factor(_hw)   container_of(_hw, struct clk_fixed_factor, hw)
 

Functions

 EXPORT_SYMBOL_GPL (clk_fixed_factor_ops)
 
struct clkclk_register_fixed_factor (struct device *dev, const char *name, const char *parent_name, unsigned long flags, unsigned int mult, unsigned int div)
 

Variables

struct clk_ops clk_fixed_factor_ops
 

Macro Definition Documentation

#define to_clk_fixed_factor (   _hw)    container_of(_hw, struct clk_fixed_factor, hw)

Definition at line 25 of file clk-fixed-factor.c.

Function Documentation

struct clk* clk_register_fixed_factor ( struct device dev,
const char name,
const char parent_name,
unsigned long  flags,
unsigned int  mult,
unsigned int  div 
)
read

Definition at line 64 of file clk-fixed-factor.c.

EXPORT_SYMBOL_GPL ( clk_fixed_factor_ops  )

Variable Documentation

struct clk_ops clk_fixed_factor_ops
Initial value:
= {
.round_rate = clk_factor_round_rate,
.set_rate = clk_factor_set_rate,
.recalc_rate = clk_factor_recalc_rate,
}

Definition at line 57 of file clk-fixed-factor.c.