Zheng Bao (zheng.bao@amd.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1501
-gerrit
commit 1de5f9391147b465bb2d40f9e62466d76b3dc036 Author: Zheng Bao fishbaozi@gmail.com Date: Tue Sep 11 12:13:39 2012 +0800
nvramtool: Remove the building warning on older gcc
Some older gcc requires the default entry in switch, otherwise build warning "enumeration value not handled in switch" will come up.
Change-Id: Ic8ea9960e4aca599e0ea62ec345122c9df57e766 Signed-off-by: Zheng Bao zheng.bao@amd.com Signed-off-by: Zheng Bao fishbaozi@gmail.com --- util/nvramtool/cmos_lowlevel.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/util/nvramtool/cmos_lowlevel.c b/util/nvramtool/cmos_lowlevel.c index 55b1879..ef0c383 100644 --- a/util/nvramtool/cmos_lowlevel.c +++ b/util/nvramtool/cmos_lowlevel.c @@ -55,6 +55,7 @@ void select_hal(hal_t hal, void *data) break; #endif case HAL_MEMORY: + default: current_access = &memory_hal; break; }