2007-01-27 05:14:34 +08:00
|
|
|
#ifndef _BLIZZARD_H
|
|
|
|
#define _BLIZZARD_H
|
|
|
|
|
|
|
|
struct blizzard_platform_data {
|
|
|
|
void (*power_up)(struct device *dev);
|
|
|
|
void (*power_down)(struct device *dev);
|
|
|
|
unsigned long (*get_clock_rate)(struct device *dev);
|
|
|
|
|
2010-02-28 00:51:38 +08:00
|
|
|
unsigned te_connected:1;
|
2007-01-27 05:14:34 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|