aboutsummaryrefslogtreecommitdiff
path: root/payloads/libpayload/drivers/cmos.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2008-03-31 15:17:39 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2008-03-31 15:17:39 +0000
commitc16d24e73a52858fa165371fa339a37c1adac403 (patch)
treec64151c569399db291b74140859adcf3d05a0e1e /payloads/libpayload/drivers/cmos.c
parent71f846c13769f037fbdf649224d03377948b7fa9 (diff)
Due to popular demand, rename "CMOS" to "NVRAM" (trivial).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3199 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads/libpayload/drivers/cmos.c')
-rw-r--r--payloads/libpayload/drivers/cmos.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/payloads/libpayload/drivers/cmos.c b/payloads/libpayload/drivers/cmos.c
index c8cd605a0a..3789c09b3c 100644
--- a/payloads/libpayload/drivers/cmos.c
+++ b/payloads/libpayload/drivers/cmos.c
@@ -45,24 +45,24 @@
#define RTC_PORT 0x70
/**
- * Read a byte from the specified CMOS address.
+ * Read a byte from the specified NVRAM address.
*
- * @param addr The CMOS address to read a byte from.
- * @return The byte at the given CMOS address.
+ * @param addr The NVRAM address to read a byte from.
+ * @return The byte at the given NVRAM address.
*/
-u8 cmos_read(u8 addr)
+u8 nvram_read(u8 addr)
{
outb(addr, RTC_PORT);
return inb(RTC_PORT + 1);
}
/**
- * Write a byte to the specified CMOS address.
+ * Write a byte to the specified NVRAM address.
*
- * @param val The byte to write to CMOS.
- * @param addr The CMOS address to write to.
+ * @param val The byte to write to NVRAM.
+ * @param addr The NVRAM address to write to.
*/
-void cmos_write(u8 val, u8 addr)
+void nvram_write(u8 val, u8 addr)
{
outb(addr, RTC_PORT);
outb(val, RTC_PORT + 1);