summaryrefslogtreecommitdiff
path: root/util/nvramtool
diff options
context:
space:
mode:
Diffstat (limited to 'util/nvramtool')
-rw-r--r--util/nvramtool/cmos_lowlevel.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/util/nvramtool/cmos_lowlevel.c b/util/nvramtool/cmos_lowlevel.c
index f37ea7ab52..8b56164284 100644
--- a/util/nvramtool/cmos_lowlevel.c
+++ b/util/nvramtool/cmos_lowlevel.c
@@ -22,14 +22,14 @@ void select_hal(hal_t hal, void *data)
{
switch(hal) {
#ifdef CMOS_HAL
- case HAL_CMOS:
- current_access = &cmos_hal;
- break;
+ case HAL_CMOS:
+ current_access = &cmos_hal;
+ break;
#endif
- case HAL_MEMORY:
- default:
- current_access = &memory_hal;
- break;
+ case HAL_MEMORY:
+ default:
+ current_access = &memory_hal;
+ break;
}
current_access->init(data);
}