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

Go to the source code of this file.

Macros

#define to_clk_fixed_rate(_hw)   container_of(_hw, struct clk_fixed_rate, hw)
 

Functions

 EXPORT_SYMBOL_GPL (clk_fixed_rate_ops)
 
: name of this clock

clk_register_fixed_rate - register fixed-rate clock with the clock framework : device that is registering this clock

: name of clock's parent : framework-specific flags : non-adjustable clock rate

struct clkclk_register_fixed_rate (struct device *dev, const char *name, const char *parent_name, unsigned long flags, unsigned long fixed_rate)
 

Variables

struct clk_ops clk_fixed_rate_ops
 

Macro Definition Documentation

#define to_clk_fixed_rate (   _hw)    container_of(_hw, struct clk_fixed_rate, hw)

Definition at line 29 of file clk-fixed-rate.c.

Function Documentation

struct clk* clk_register_fixed_rate ( struct device dev,
const char name,
const char parent_name,
unsigned long  flags,
unsigned long  fixed_rate 
)
read

Definition at line 50 of file clk-fixed-rate.c.

EXPORT_SYMBOL_GPL ( clk_fixed_rate_ops  )

Variable Documentation

struct clk_ops clk_fixed_rate_ops
Initial value:
= {
.recalc_rate = clk_fixed_rate_recalc_rate,
}

Definition at line 37 of file clk-fixed-rate.c.