dtc: Enable more warnings

This patch turns on a bunch of extra gcc warnings, most of which are
probably a good idea.  Of the new warnings -Wnested-externs and
-Wstrict-prototypes need no code changes, we're already warning-clean.
The remaining one, -Wmissing-prototypes requires trivial changes in
some of the tests (making functions local).

This patch also rearranges the warnings flags into a separate make
variable for convenience, and turns on -Werror, to really encourage
people to keep the code warning-clean.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
main
David Gibson 2010-03-09 10:49:33 +11:00 committed by Jon Loeliger
parent 8765874963
commit 74f6a51b1f
5 changed files with 8 additions and 6 deletions

View File

@ -16,7 +16,9 @@ LOCAL_VERSION =
CONFIG_LOCALVERSION =

CPPFLAGS = -I libfdt
CFLAGS = -Wall -g -Os -fPIC -Wpointer-arith -Wcast-qual
WARNINGS = -Werror -Wall -Wpointer-arith -Wcast-qual -Wnested-externs \
-Wstrict-prototypes -Wmissing-prototypes
CFLAGS = -g -Os -fPIC -Werror $(WARNINGS)

BISON = bison
LEX = flex

View File

@ -28,7 +28,7 @@
#include "tests.h"
#include "testdata.h"

void check_extranull(void *fdt, const char *prop, const char *str, int numnulls)
static void check_extranull(void *fdt, const char *prop, const char *str, int numnulls)
{
int len = strlen(str);
char checkbuf[len+numnulls];

View File

@ -29,7 +29,7 @@
#include "tests.h"
#include "testdata.h"

void check_alias(void *fdt, const char *path, const char *alias)
static void check_alias(void *fdt, const char *path, const char *alias)
{
const char *aliaspath;


View File

@ -29,7 +29,7 @@
#include "tests.h"
#include "testdata.h"

void check_alias(void *fdt, const char *full_path, const char *alias_path)
static void check_alias(void *fdt, const char *full_path, const char *alias_path)
{
int offset, offset_a;


View File

@ -59,8 +59,8 @@ struct val_label labels3[] = {
{ "end3", -1 },
};

void check_prop_labels(void *sohandle, void *fdt, const char *name,
const struct val_label* labels, int n)
static void check_prop_labels(void *sohandle, void *fdt, const char *name,
const struct val_label* labels, int n)
{
const struct fdt_property *prop;
const char *p;