1. NAME

struct_clk_notifier_data - rate data to pass to the notifier callback

2. SYNOPSIS



 
Sélectionnez
struct clk_notifier_data {
  struct clk * clk;
  unsigned long old_rate;
  unsigned long new_rate;
};

3. MEMBERS

clk
    struct clk * being changed

old_rate
    previous rate of this clk

new_rate
    new rate of this clk

4. DESCRIPTION

For a pre-notifier, old_rate is the clkAqs rate before this rate change, and new_rate is what the rate will be in the future. For a post-notifier, old_rate and new_rate are both set to the clkAqs current rate (this was done to optimize the implementation).

5. COPYRIGHT