2007-01-26 14:14:34 -07: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 09:51:38 -07:00
|
|
|
unsigned te_connected:1;
|
2007-01-26 14:14:34 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|