diff options
author | Pavan Savoy <pavan_savoy@ti.com> | 2010-09-30 16:13:30 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-10-05 14:48:07 -0400 |
commit | e5558679bbb80788dc8c4c30484ac0a68e971ca5 (patch) | |
tree | 5639f51fb808644a537dc7be385962a9a32ce1ed | |
parent | c7afa08d80dbcfdbd7fd04388f7bc475ec8acf69 (diff) |
staging: ti-st: mv ti_wilink_st header
Move the header to a standard linux device driver location.
This should pave the way for other drivers to be moved into the relevant
directories.
ti_wilink_st.h is a common header file used by the TI's shared transport device
driver for WiLink chipsets. Each individual protocol drivers like bluetooth
driver, FM V4L2 driver and GPS drivers will make use of this header.
Signed-off-by: Pavan Savoy <pavan_savoy@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/ti-st/bt_drv.c | 2 | ||||
-rw-r--r-- | drivers/staging/ti-st/st_core.c | 2 | ||||
-rw-r--r-- | drivers/staging/ti-st/st_kim.c | 2 | ||||
-rw-r--r-- | drivers/staging/ti-st/st_ll.c | 2 | ||||
-rw-r--r-- | include/linux/ti_wilink_st.h (renamed from drivers/staging/ti-st/ti_wilink_st.h) | 0 |
5 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/ti-st/bt_drv.c b/drivers/staging/ti-st/bt_drv.c index 50da66db72c2..75065bf39e5c 100644 --- a/drivers/staging/ti-st/bt_drv.c +++ b/drivers/staging/ti-st/bt_drv.c | |||
@@ -24,7 +24,7 @@ | |||
24 | #include <net/bluetooth/bluetooth.h> | 24 | #include <net/bluetooth/bluetooth.h> |
25 | #include <net/bluetooth/hci_core.h> | 25 | #include <net/bluetooth/hci_core.h> |
26 | 26 | ||
27 | #include "ti_wilink_st.h" | 27 | #include <linux/ti_wilink_st.h> |
28 | #include "bt_drv.h" | 28 | #include "bt_drv.h" |
29 | 29 | ||
30 | /* Define this macro to get debug msg */ | 30 | /* Define this macro to get debug msg */ |
diff --git a/drivers/staging/ti-st/st_core.c b/drivers/staging/ti-st/st_core.c index 03397bee37db..5bef61e579c3 100644 --- a/drivers/staging/ti-st/st_core.c +++ b/drivers/staging/ti-st/st_core.c | |||
@@ -28,7 +28,7 @@ | |||
28 | #include <net/bluetooth/bluetooth.h> | 28 | #include <net/bluetooth/bluetooth.h> |
29 | #include <net/bluetooth/hci_core.h> | 29 | #include <net/bluetooth/hci_core.h> |
30 | #include <net/bluetooth/hci.h> | 30 | #include <net/bluetooth/hci.h> |
31 | #include "ti_wilink_st.h" | 31 | #include <linux/ti_wilink_st.h> |
32 | 32 | ||
33 | /* strings to be used for rfkill entries and by | 33 | /* strings to be used for rfkill entries and by |
34 | * ST Core to be used for sysfs debug entry | 34 | * ST Core to be used for sysfs debug entry |
diff --git a/drivers/staging/ti-st/st_kim.c b/drivers/staging/ti-st/st_kim.c index 09e2c97562be..372a9960c304 100644 --- a/drivers/staging/ti-st/st_kim.c +++ b/drivers/staging/ti-st/st_kim.c | |||
@@ -36,7 +36,7 @@ | |||
36 | #include <net/bluetooth/hci_core.h> | 36 | #include <net/bluetooth/hci_core.h> |
37 | #include <net/bluetooth/hci.h> | 37 | #include <net/bluetooth/hci.h> |
38 | 38 | ||
39 | #include "ti_wilink_st.h" | 39 | #include <linux/ti_wilink_st.h> |
40 | 40 | ||
41 | 41 | ||
42 | static int kim_probe(struct platform_device *pdev); | 42 | static int kim_probe(struct platform_device *pdev); |
diff --git a/drivers/staging/ti-st/st_ll.c b/drivers/staging/ti-st/st_ll.c index d08b58e78083..ed1e4bc180d3 100644 --- a/drivers/staging/ti-st/st_ll.c +++ b/drivers/staging/ti-st/st_ll.c | |||
@@ -21,7 +21,7 @@ | |||
21 | #define pr_fmt(fmt) "(stll) :" fmt | 21 | #define pr_fmt(fmt) "(stll) :" fmt |
22 | #include <linux/skbuff.h> | 22 | #include <linux/skbuff.h> |
23 | #include <linux/module.h> | 23 | #include <linux/module.h> |
24 | #include "ti_wilink_st.h" | 24 | #include <linux/ti_wilink_st.h> |
25 | 25 | ||
26 | /**********************************************************************/ | 26 | /**********************************************************************/ |
27 | /* internal functions */ | 27 | /* internal functions */ |
diff --git a/drivers/staging/ti-st/ti_wilink_st.h b/include/linux/ti_wilink_st.h index 2a5acf599598..2a5acf599598 100644 --- a/drivers/staging/ti-st/ti_wilink_st.h +++ b/include/linux/ti_wilink_st.h | |||