Files
OpenCellular/firmware
Aaron Durbin ab63d3c20b rollback_index: fix -Wshadow warnings
The rollback_index.c file uses a macro RETURN_ON_FAILURE which creates
a locally block-scoped variable named 'result'. However, when built with
-Wshadow -Werror the compile will break because the 'result' variable
will shadow the one function scoped variable. Fix this warning by
changing the variable name from 'result'  to 'result_' in
the RETURN_ON_FAILURE macro.

BUG=chrome-os-partner:17695
BRANCH=None
TEST=built fwlib with -Werror -Wshadow. Compiles correctly.
     runtests still passes as well.

Change-Id: I9fedef5567411beacdc1c0b8ed182573601f24aa
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/44044
Reviewed-by: Bill Richardson <wfrichar@chromium.org>
Reviewed-by: Randall Spangler <rspangler@chromium.org>
2013-02-26 10:12:37 -08:00
..
2013-01-23 13:23:05 -08:00
2013-02-26 10:12:37 -08:00
2012-08-15 14:31:53 -07:00
2013-02-06 17:38:04 -08:00
2010-11-30 09:30:45 +08:00

arch/ is stuff that defines the architecture-dependent information (only used in
firmware build mode).

lib/ is stuff that the BIOS needs to link with.

stub/ is stuff to be implemented by the BIOS.

include/ describes the interfaces between the two parts.