blob: 4aa2ce3217fb0e7b283650d49912585a56440ac7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef BCM5785_CHIP_H
#define BCM5785_CHIP_H
struct southbridge_broadcom_bcm5785_config
{
unsigned int ide0_enable : 1;
unsigned int ide1_enable : 1;
unsigned int sata0_enable : 1;
unsigned int sata1_enable : 1;
};
struct chip_operations;
extern struct chip_operations southbridge_broadcom_bcm5785_ops;
#endif /* BCM5785_CHIP_H */
|