summaryrefslogtreecommitdiffstats
path: root/board_enable.c
diff options
context:
space:
mode:
authorCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2010-05-30 22:24:40 +0000
committerCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2010-05-30 22:24:40 +0000
commit831e8f4abb29f1ff66ebb8ab5ff496050ff677f7 (patch)
tree8d19ef4871587dcaf0a3a1dec562dd6ef09024b6 /board_enable.c
parent4178760241c3b3dc46a806ee3621a2eb97f4cca5 (diff)
downloadast2050-flashrom-831e8f4abb29f1ff66ebb8ab5ff496050ff677f7.zip
ast2050-flashrom-831e8f4abb29f1ff66ebb8ab5ff496050ff677f7.tar.gz
Remove unneeded #include statements completely
Unistd.h was only used to get a definition of NULL in all files. Add our own NULL #define and remove unistd.h from flash.h stdio.h has no place in flash.h, it should be included only in files which really need it. Add #include statements in individual .c files where needed. Replace a few printf with msg_* to eliminate the need for stdio.h. Corresponding to flashrom svn r1021. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
Diffstat (limited to 'board_enable.c')
-rw-r--r--board_enable.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/board_enable.c b/board_enable.c
index b5eb63f..618eb0d 100644
--- a/board_enable.c
+++ b/board_enable.c
@@ -25,7 +25,6 @@
*/
#include <string.h>
-#include <fcntl.h>
#include "flash.h"
#if defined(__i386__) || defined(__x86_64__)
@@ -107,8 +106,8 @@ static int fdc37b787_gpio50_raise(uint16_t port, const char * name)
OUTB(0x55, port); /* enter conf mode */
id = sio_read(port, 0x20);
if (id != 0x44) {
- fprintf(stderr, "\nERROR: %s: FDC37B787: Wrong ID 0x%02X.\n",
- name, id);
+ msg_perr("\nERROR: %s: FDC37B787: Wrong ID 0x%02X.\n",
+ name, id);
OUTB(0xAA, port); /* leave conf mode */
return -1;
}
@@ -118,8 +117,8 @@ static int fdc37b787_gpio50_raise(uint16_t port, const char * name)
val = sio_read(port, 0xC8); /* GP50 */
if ((val & 0x1B) != 0x10) /* output, no invert, GPIO */
{
- fprintf(stderr, "\nERROR: %s: GPIO50 mode 0x%02X unexpected.\n",
- name, val);
+ msg_perr("\nERROR: %s: GPIO50 mode 0x%02X unexpected.\n",
+ name, val);
OUTB(0xAA, port);
return -1;
}
OpenPOWER on IntegriCloud