mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-15 13:15:57 +00:00
a09e64fbc0
This just leaves include/asm-arm/plat-* to deal with. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
13 lines
249 B
C
13 lines
249 B
C
#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
|