diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2009-09-07 17:08:39 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-09-23 06:46:39 -0700 |
commit | 9e221be815cd263480928248bfd4541497017a1b (patch) | |
tree | d42986403e37736e0f7f070495857b3ff066d56e /drivers/usb | |
parent | d0a38365d9585bf3fb71f7c57fd532441a14f3e8 (diff) | |
download | linux-3.10-9e221be815cd263480928248bfd4541497017a1b.tar.gz linux-3.10-9e221be815cd263480928248bfd4541497017a1b.tar.bz2 linux-3.10-9e221be815cd263480928248bfd4541497017a1b.zip |
USB: gadget: ether needs to select CRC32
Fix build error, ether uses/needs to select CRC32 config symbol:
ether.c:(.text+0x271480): undefined reference to `crc32_le'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/gadget/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/gadget/Kconfig b/drivers/usb/gadget/Kconfig index 4d8ab470f08..33351312327 100644 --- a/drivers/usb/gadget/Kconfig +++ b/drivers/usb/gadget/Kconfig @@ -627,6 +627,7 @@ config USB_AUDIO config USB_ETH tristate "Ethernet Gadget (with CDC Ethernet support)" depends on NET + select CRC32 help This driver implements Ethernet style communication, in one of several ways: |