diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-03-31 11:25:03 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-29 18:51:48 -0600 |
commit | 19268834fb208a7deb43f9a00b034e0c6abab3cd (patch) | |
tree | 1261fe2f3fd113bfbdc13a0dd677edd7f77b3a06 /include/smsc_lpc47m.h | |
parent | d21d05f19a7e4f3b27895a835d0e6de6d7951722 (diff) | |
download | u-boot-19268834fb208a7deb43f9a00b034e0c6abab3cd.tar.gz |
x86: Set serial port IRQ for SMSC LPC47M
For starting a Linux console on the superio serial port under
interrupt mode, the IRQ number must be configured.
Signed-off-by: Jian Luo <jian.luo4@boschrexroth.de>
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/smsc_lpc47m.h')
-rw-r--r-- | include/smsc_lpc47m.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/smsc_lpc47m.h b/include/smsc_lpc47m.h index bffd622f0f..32b069df6f 100644 --- a/include/smsc_lpc47m.h +++ b/include/smsc_lpc47m.h @@ -13,7 +13,8 @@ * * @dev: High 8 bits = Super I/O port, low 8 bits = logical device number. * @iobase: Processor I/O port address to assign to this serial device. + * @irq: Processor IRQ number to assign to this serial device. */ -void lpc47m_enable_serial(u16 dev, u16 iobase); +void lpc47m_enable_serial(u16 dev, u16 iobase, u8 irq); #endif /* _SMSC_LPC47M_H_ */ |