drivers/rtc/rtc-cmos.c: fix broken NVRAM bank 2 writing

Fix writing to NVRAM bank 2 in rtc-cmos driver.  It never worked since its
introduction in 2.6.28 because of a typo.

Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Ondrej Zary 2012-01-10 15:10:26 -08:00 committed by Linus Torvalds
parent e26d196cc8
commit b43c1ea4d6

View file

@ -164,7 +164,7 @@ static inline unsigned char cmos_read_bank2(unsigned char addr)
static inline void cmos_write_bank2(unsigned char val, unsigned char addr) static inline void cmos_write_bank2(unsigned char val, unsigned char addr)
{ {
outb(addr, RTC_PORT(2)); outb(addr, RTC_PORT(2));
outb(val, RTC_PORT(2)); outb(val, RTC_PORT(3));
} }
#else #else