diff options
author | Li-Ta Lo <ollie@lanl.gov> | 2004-04-29 20:30:02 +0000 |
---|---|---|
committer | Li-Ta Lo <ollie@lanl.gov> | 2004-04-29 20:30:02 +0000 |
commit | d16753be863e6c5729af904f4034495b4a58efe9 (patch) | |
tree | 1ecc170ef1f57dbbdd916198bb90cf192bd8fca8 /src/include | |
parent | 69c5a905ede8053fd2993ed2e4ff14e9970f2dce (diff) |
chaged chip_device_path::enable to chip_device_path::enabled,
again, I am the only one who can't speak English.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1544 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/device/chip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/device/chip.h b/src/include/device/chip.h index 7dface868f..5f4e36b87c 100644 --- a/src/include/device/chip.h +++ b/src/include/device/chip.h @@ -56,7 +56,7 @@ struct chip_resource { struct chip_device_path { struct device_path path; unsigned channel; - int enable; + int enabled; struct chip_resource resource[MAX_RESOURCES]; }; |