2007-01-26 13: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-27 16:51:38 +00:00
|
|
|
unsigned te_connected:1;
|
2007-01-26 13:14:34 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|