mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
Fix modpost warning in serial driver
This is triggered if PCI && !HOTPLUG. MODPOST vmlinux.o WARNING: vmlinux.o(.data+0xc910): Section mismatch: reference to .init.text:pci_ite887x_init (between 'pci_serial_quirks' and 'serial_pci_tbl') Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
cb109a0eb4
commit
f79abb828e
1 changed files with 1 additions and 1 deletions
|
@ -610,7 +610,7 @@ static int pci_netmos_init(struct pci_dev *dev)
|
||||||
/* enable IO_Space bit */
|
/* enable IO_Space bit */
|
||||||
#define ITE_887x_POSIO_ENABLE (1 << 31)
|
#define ITE_887x_POSIO_ENABLE (1 << 31)
|
||||||
|
|
||||||
static int __devinit pci_ite887x_init(struct pci_dev *dev)
|
static int pci_ite887x_init(struct pci_dev *dev)
|
||||||
{
|
{
|
||||||
/* inta_addr are the configuration addresses of the ITE */
|
/* inta_addr are the configuration addresses of the ITE */
|
||||||
static const short inta_addr[] = { 0x2a0, 0x2c0, 0x220, 0x240, 0x1e0,
|
static const short inta_addr[] = { 0x2a0, 0x2c0, 0x220, 0x240, 0x1e0,
|
||||||
|
|
Loading…
Reference in a new issue