Skip to content

Commit

Permalink
ir-functions.c:(.text+0xbce18): undefined reference to `input_event'
Browse files Browse the repository at this point in the history
[bugme-daemon@bugzilla.kernel.org wrote:]

From: Randy Dunlap <randy.dunlap@oracle.com>

Drivers that use lro functions should depend on INET, otherwise they
may not link correctly.  Let's not select INET.  Select should be used
only for library-like code, not to enable subsystems.

ERROR: "lro_flush_all" [drivers/net/myri10ge/myri10ge.ko] undefined!
ERROR: "lro_receive_frags" [drivers/net/myri10ge/myri10ge.ko] undefined!

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Randy Dunlap authored and Jeff Garzik committed Oct 20, 2007
1 parent bf45abe commit e0d5dab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2473,7 +2473,7 @@ config CHELSIO_T3

config EHEA
tristate "eHEA Ethernet support"
depends on IBMEBUS
depends on IBMEBUS && INET
select INET_LRO
---help---
This driver supports the IBM pSeries eHEA ethernet adapter.
Expand Down Expand Up @@ -2564,7 +2564,7 @@ config S2IO_NAPI

config MYRI10GE
tristate "Myricom Myri-10G Ethernet support"
depends on PCI
depends on PCI && INET
select FW_LOADER
select CRC32
select INET_LRO
Expand Down

0 comments on commit e0d5dab

Please sign in to comment.