Only post_code.h should have the prototype for post_code() from
post_code.c (thus drop it from console.h). Instead, have console.h #include post_code.h and drop other explicit #includes of post_code.h in the code; console.h is already included in pretty much every file. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@513 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
fe31d1970c
commit
e28f0155f6
12 changed files with 5 additions and 11 deletions
|
|
@ -18,9 +18,13 @@
|
|||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef POST_CODE_H
|
||||
#define POST_CODE_H
|
||||
|
||||
#include <shared.h>
|
||||
|
||||
SHARED(post_code, void, u8 value);
|
||||
|
||||
#define POST_START_OF_MAIN 0x01
|
||||
|
||||
#endif /* POST_CODE_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue