blob: 8d160f171372501b57175437a61aff498e4b6c9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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
|