diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2010-12-20 16:24:40 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2010-12-20 16:24:40 -0500 |
commit | 672d6a4b98165952e0afa0057f851f150bc657ec (patch) | |
tree | 4bd03e87c875477d172910ee1a0a838111949d83 /src/dev | |
parent | 89850d6370b29272788cb73165341ced68e3bd53 (diff) | |
download | gem5-672d6a4b98165952e0afa0057f851f150bc657ec.tar.xz |
Style: Replace some tabs with spaces.
Diffstat (limited to 'src/dev')
-rw-r--r-- | src/dev/x86/cmos.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dev/x86/cmos.cc b/src/dev/x86/cmos.cc index e08c56e8c..122b531ca 100644 --- a/src/dev/x86/cmos.cc +++ b/src/dev/x86/cmos.cc @@ -87,11 +87,11 @@ X86ISA::Cmos::readRegister(uint8_t reg) if (reg <= 0xD) { val = rtc.readData(reg); DPRINTF(CMOS, - "Reading CMOS RTC reg %x as %x.\n", reg, val); + "Reading CMOS RTC reg %x as %x.\n", reg, val); } else { val = regs[reg]; DPRINTF(CMOS, - "Reading non-volitile CMOS address %x as %x.\n", reg, val); + "Reading non-volitile CMOS address %x as %x.\n", reg, val); } return val; } @@ -102,11 +102,11 @@ X86ISA::Cmos::writeRegister(uint8_t reg, uint8_t val) assert(reg < numRegs); if (reg <= 0xD) { DPRINTF(CMOS, "Writing CMOS RTC reg %x with %x.\n", - reg, val); + reg, val); rtc.writeData(reg, val); } else { DPRINTF(CMOS, "Writing non-volitile CMOS address %x with %x.\n", - reg, val); + reg, val); regs[reg] = val; } } |