mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 12:41:55 +00:00
773d67903a
st_drv uses skb*() interfaces, so it should depend on NET. It also uses GPIO interfaces, so it should depend on GPIOLIB. st_kim.c uses syss_*() calls, so it should #include <linux/sysfs.h>. Fixes these observed build errors: ERROR: "skb_queue_purge" [drivers/misc/ti-st/st_drv.ko] undefined! ERROR: "skb_pull" [drivers/misc/ti-st/st_drv.ko] undefined! ERROR: "skb_queue_tail" [drivers/misc/ti-st/st_drv.ko] undefined! ERROR: "__alloc_skb" [drivers/misc/ti-st/st_drv.ko] undefined! ERROR: "kfree_skb" [drivers/misc/ti-st/st_drv.ko] undefined! ERROR: "skb_dequeue" [drivers/misc/ti-st/st_drv.ko] undefined! ERROR: "skb_put" [drivers/misc/ti-st/st_drv.ko] undefined! Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Cc: Pavan Savoy <pavan_savoy@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
18 lines
520 B
Plaintext
18 lines
520 B
Plaintext
#
|
|
# TI's shared transport line discipline and the protocol
|
|
# drivers (BT, FM and GPS)
|
|
#
|
|
menu "Texas Instruments shared transport line discipline"
|
|
config TI_ST
|
|
tristate "Shared transport core driver"
|
|
depends on NET && GPIOLIB
|
|
select FW_LOADER
|
|
help
|
|
This enables the shared transport core driver for TI
|
|
BT / FM and GPS combo chips. This enables protocol drivers
|
|
to register themselves with core and send data, the responses
|
|
are returned to relevant protocol drivers based on their
|
|
packet types.
|
|
|
|
endmenu
|