mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-11 21:46:46 +07:00
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
|