blob: 5952e3858282cdea62560644e2cc154381b4aee0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef I440BX_CHIP_H
#define I440BX_CHIP_H
struct southbridge_intel_i440bx_config
{
unsigned int ide0_enable : 1;
unsigned int ide1_enable : 1;
};
struct chip_operations;
extern struct chip_operations southbridge_intel_i440bx_ops;
#endif /* I440BX_CHIP_H */
|