Reduce warnings/errors in libpayload when using picky compiler options

The new build system uses quite a few more -W flags for the compiler by
default than the old one. And that's for the better.

Change-Id: Ia8e3d28fb35c56760c2bd0983046c7067e8c5dd6
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/72
Tested-by: build bot (Jenkins)
Reviewed-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
Patrick Georgi
2011-04-21 18:57:16 +02:00
committed by Uwe Hermann
parent b3db79e996
commit 7f96583f0f
20 changed files with 50 additions and 41 deletions

View File

@ -57,10 +57,8 @@
#include <libpayload.h>
#include <getopt.h>
#define warnx(x...) printf(x)
/*
#include <stdlib.h>
#include <string.h>
*/
#define REPLACE_GETOPT /* use this getopt as the system getopt(3) */
#ifdef REPLACE_GETOPT
@ -84,7 +82,7 @@ int posixly_correct = 0;
#define BADARG ((*options == ':') ? (int)':' : (int)'?')
#define INORDER (int)1
#define EMSG ""
#define EMSG (char*)""
static int getopt_internal(int, char * const *, const char *,
const struct option *, int *, int);

View File

@ -114,7 +114,7 @@ static int printf_putstr(const char *str, struct printf_spec *ps)
size_t count;
if (str == NULL) {
char *nullstr = "(NULL)";
const char *nullstr = "(NULL)";
return printf_putnchars(nullstr, strlen(nullstr), ps);
}

View File

@ -27,6 +27,8 @@
* SUCH DAMAGE.
*/
#include <strings.h>
int ffs(int i)
{
int count = 1;

View File

@ -30,8 +30,6 @@
#include <libpayload.h>
#include <sysinfo.h>
extern struct sysinfo_t lib_sysinfo;
int sysinfo_have_multiboot(unsigned long *addr)
{
*addr = (unsigned long) lib_sysinfo.mbtable;