blob: 58efa3b66ff08525d96bcbe05ea3072baa27cc23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef I82371EB_CHIP_H
#define I82371EB_CHIP_H
struct southbridge_intel_i82371eb_config
{
unsigned int ide0_enable : 1;
unsigned int ide1_enable : 1;
};
struct chip_operations;
extern struct chip_operations southbridge_intel_i82371eb_ops;
#endif /* I82371EB_CHIP_H */
|