blob: 3143425108577a9d90820adb08d8edb6da6b365b (
plain)
1
2
3
4
5
6
7
8
9
10
|
extern struct chip_control cpu_k8_control;
struct ht_link {
struct chip *chip;
unsigned int ht_width, ht_speed;
};
struct cpu_k8_config {
struct ht_link ldt0, ldt1, ldt2;
};
|