diff options
Diffstat (limited to 'src/devices')
-rw-r--r-- | src/devices/chip.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/devices/chip.c b/src/devices/chip.c new file mode 100644 index 0000000000..d25c92e0d7 --- /dev/null +++ b/src/devices/chip.c @@ -0,0 +1,15 @@ +/* chips are arbitrary chips (superio, southbridge, etc.) + * They have private structures that define chip resources and default + * settings. They have four externally visible functions for control. + * They have a generic component which applies to all chips for + * path, etc. + */ + +#include <device/chip.h> + +void +chip_configure(struct chip *root, enum chip_pass pass) +{ + while (root) { + } +} |