chip stuff
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@988 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
15
src/devices/chip.c
Normal file
15
src/devices/chip.c
Normal file
@@ -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) {
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user