diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2012-10-10 09:07:28 +0200 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2012-10-10 15:36:11 +0200 |
commit | 1b97bdc42a91746906b99a37ad15ba0a0039e4a3 (patch) | |
tree | 1e01b7548ddd9db9196fb7df5a3c1ddfa86a3747 /src/mainboard/bachmann | |
parent | 2feddbded844c71f0ff5cdfb02a9ccad2d0a4423 (diff) | |
download | coreboot-1b97bdc42a91746906b99a37ad15ba0a0039e4a3.tar.gz coreboot-1b97bdc42a91746906b99a37ad15ba0a0039e4a3.tar.bz2 coreboot-1b97bdc42a91746906b99a37ad15ba0a0039e4a3.zip |
bachmann/ot200: Fix wrong IRQ number for PIRQD
The used FPGA on the device triggers PIRQD for the membrane
keyboard. The used linux driver for the keyboard uses the fixed
IRQ number of 7. In order not to touch the linux driver and be
compatible with proprietary BIOS change the irq_table in
coreboot.
Change-Id: If5bc929eb48bb1eafd401941ebb7d34cf5862c35
Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Reviewed-on: http://review.coreboot.org/1571
Tested-by: build bot (Jenkins)
Reviewed-by: Peter Stuge <peter@stuge.se>
Diffstat (limited to 'src/mainboard/bachmann')
-rw-r--r-- | src/mainboard/bachmann/ot200/irq_tables.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/bachmann/ot200/irq_tables.c b/src/mainboard/bachmann/ot200/irq_tables.c index 7c3e08f3800d..5a5372a09da4 100644 --- a/src/mainboard/bachmann/ot200/irq_tables.c +++ b/src/mainboard/bachmann/ot200/irq_tables.c @@ -23,8 +23,8 @@ /* Platform IRQs */ #define PIRQA 5 #define PIRQB 9 -#define PIRQC 7 -#define PIRQD 10 +#define PIRQC 10 +#define PIRQD 7 /* Map */ #define M_PIRQA (1 << PIRQA) /* Bitmap of supported IRQs */ |