You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
249 B
13 lines
249 B
18 years ago
|
#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);
|
||
|
|
||
|
unsigned te_connected : 1;
|
||
|
};
|
||
|
|
||
|
#endif
|