diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2009-03-18 13:00:16 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 17:54:26 -0400 |
commit | bbe364ddedd84ee5a4bec65fa0ca56caf09d6802 (patch) | |
tree | 87b553025b5cf578dc91b861470c5b367749e93d | |
parent | 9cd57f777724b941cd2e22a7124be7c09bb3132b (diff) |
Staging: line6: fix build error, select SND_RAWMIDI
line6 needs to select SND_RAWMIDI, like many other drivers do.
ERROR: "snd_rawmidi_set_ops" [drivers/staging/line6/line6usb.ko] undefined!
ERROR: "snd_rawmidi_new" [drivers/staging/line6/line6usb.ko] undefined!
ERROR: "snd_rawmidi_transmit_peek" [drivers/staging/line6/line6usb.ko] undefined!
ERROR: "snd_rawmidi_transmit_ack" [drivers/staging/line6/line6usb.ko] undefined!
ERROR: "snd_rawmidi_receive" [drivers/staging/line6/line6usb.ko] undefined!
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/line6/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/line6/Kconfig b/drivers/staging/line6/Kconfig index 84f5be71ccff..7852d4a960c5 100644 --- a/drivers/staging/line6/Kconfig +++ b/drivers/staging/line6/Kconfig | |||
@@ -1,6 +1,7 @@ | |||
1 | config LINE6_USB | 1 | config LINE6_USB |
2 | tristate "Line6 USB support" | 2 | tristate "Line6 USB support" |
3 | depends on USB && SND | 3 | depends on USB && SND |
4 | select SND_RAWMIDI | ||
4 | help | 5 | help |
5 | This is a driver for the guitar amp, cab, and effects modeller | 6 | This is a driver for the guitar amp, cab, and effects modeller |
6 | PODxt Pro by Line6 (and similar devices), supporting the | 7 | PODxt Pro by Line6 (and similar devices), supporting the |