blob: 6c97ef2232fe181c5eb2b3900b200bbb999caf89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef AMD8111_CHIP_H
#define AMD8111_CHIP_H
struct southbridge_amd_amd8111_config
{
unsigned int ide0_enable : 1;
unsigned int ide1_enable : 1;
unsigned int phy_lowreset : 1;
};
struct chip_operations;
extern struct chip_operations southbridge_amd_amd8111_ops;
#endif /* AMD8111_CHIP_H */
|