diff options
| author | Bin Meng <[email protected]> | 2015-03-31 11:25:03 +0800 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2015-04-29 18:51:48 -0600 |
| commit | 19268834fb208a7deb43f9a00b034e0c6abab3cd (patch) | |
| tree | 1261fe2f3fd113bfbdc13a0dd677edd7f77b3a06 /include | |
| parent | d21d05f19a7e4f3b27895a835d0e6de6d7951722 (diff) | |
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 <[email protected]>
Signed-off-by: Bin Meng <[email protected]>
Acked-by: Simon Glass <[email protected]>
Diffstat (limited to 'include')
| -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 bffd622f0fd..32b069df6f0 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_ */ |
