diff options
author | Li-Ta Lo <ollie@lanl.gov> | 2004-04-30 23:11:23 +0000 |
---|---|---|
committer | Li-Ta Lo <ollie@lanl.gov> | 2004-04-30 23:11:23 +0000 |
commit | 52f851dd1da8cefb3fb6e4795dc419d76d2b50b1 (patch) | |
tree | 7ce1f6a1fe5fed5ed4021d33310b8649f5c5d036 /src/mainboard/amd | |
parent | d16753be863e6c5729af904f4034495b4a58efe9 (diff) | |
download | coreboot-52f851dd1da8cefb3fb6e4795dc419d76d2b50b1.tar.xz |
put extern keyword in front of declaration, make the compiler do it job
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1545 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/amd')
-rw-r--r-- | src/mainboard/amd/quartet/chip.h | 2 | ||||
-rw-r--r-- | src/mainboard/amd/solo/chip.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/amd/quartet/chip.h b/src/mainboard/amd/quartet/chip.h index 191eb65e5c..6f46dd00b4 100644 --- a/src/mainboard/amd/quartet/chip.h +++ b/src/mainboard/amd/quartet/chip.h @@ -1,4 +1,4 @@ -struct chip_control mainboard_amd_quartet_control; +extern struct chip_control mainboard_amd_quartet_control; struct mainboard_amd_quartet_config { int nothing; diff --git a/src/mainboard/amd/solo/chip.h b/src/mainboard/amd/solo/chip.h index e25cfac762..5a72960b28 100644 --- a/src/mainboard/amd/solo/chip.h +++ b/src/mainboard/amd/solo/chip.h @@ -1,4 +1,4 @@ -struct chip_control mainboard_amd_solo_control; +extern struct chip_control mainboard_amd_solo_control; struct mainboard_amd_solo_config { int nothing; |