summaryrefslogtreecommitdiff
path: root/src/northbridge
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-02-23 20:31:37 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2010-02-23 20:31:37 +0000
commit740b587baa749f89361e53e05e2f629e6941e378 (patch)
tree925973c5e5de0ed152a7ac2694dc7d3db0c57780 /src/northbridge
parent1c1d9a034a190277c6c9bfd5f262df8cad46b01e (diff)
downloadcoreboot-740b587baa749f89361e53e05e2f629e6941e378.tar.xz
Remove nonsensical wrapper for function in
PS/2 keyboard API. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Patrick Georgi <patrick.georgi@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5152 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge')
-rw-r--r--src/northbridge/via/cx700/cx700_lpc.c2
-rw-r--r--src/northbridge/via/vx800/vx800_lpc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/northbridge/via/cx700/cx700_lpc.c b/src/northbridge/via/cx700/cx700_lpc.c
index 115d66c235..943838720a 100644
--- a/src/northbridge/via/cx700/cx700_lpc.c
+++ b/src/northbridge/via/cx700/cx700_lpc.c
@@ -294,7 +294,7 @@ static void cx700_lpc_init(struct device *dev)
isa_dma_init();
/* Initialize keyboard controller */
- init_pc_keyboard(0x60, 0x64, 0);
+ pc_keyboard_init(0);
}
static struct device_operations cx700_lpc_ops = {
diff --git a/src/northbridge/via/vx800/vx800_lpc.c b/src/northbridge/via/vx800/vx800_lpc.c
index 8f79670034..2cd3202ad6 100644
--- a/src/northbridge/via/vx800/vx800_lpc.c
+++ b/src/northbridge/via/vx800/vx800_lpc.c
@@ -342,7 +342,7 @@ static void southbridge_init(struct device *dev)
setup_i8259(); // make sure interupt controller is configured before keyboard init
/* turn on keyboard and RTC, no need to visit this reg twice */
- init_pc_keyboard(0x60, 0x64, 0);
+ pc_keyboard_init(0);
printk_debug
("ps2 usb lid, you set who can wakeup system from s3 sleep\n");
S3_ps2_kb_ms_wakeup(dev);