From: Pavan Savoy Date: Thu, 30 Sep 2010 20:13:30 +0000 (-0400) Subject: staging: ti-st: mv ti_wilink_st header X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=e5558679bbb80788dc8c4c30484ac0a68e971ca5;p=linux-edison.git 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ti-st/bt_drv.c b/drivers/staging/ti-st/bt_drv.c index 50da66db72c..75065bf39e5 100644 --- a/drivers/staging/ti-st/bt_drv.c +++ b/drivers/staging/ti-st/bt_drv.c @@ -24,7 +24,7 @@ #include #include -#include "ti_wilink_st.h" +#include #include "bt_drv.h" /* 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 03397bee37d..5bef61e579c 100644 --- a/drivers/staging/ti-st/st_core.c +++ b/drivers/staging/ti-st/st_core.c @@ -28,7 +28,7 @@ #include #include #include -#include "ti_wilink_st.h" +#include /* strings to be used for rfkill entries and by * 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 09e2c97562b..372a9960c30 100644 --- a/drivers/staging/ti-st/st_kim.c +++ b/drivers/staging/ti-st/st_kim.c @@ -36,7 +36,7 @@ #include #include -#include "ti_wilink_st.h" +#include 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 d08b58e7808..ed1e4bc180d 100644 --- a/drivers/staging/ti-st/st_ll.c +++ b/drivers/staging/ti-st/st_ll.c @@ -21,7 +21,7 @@ #define pr_fmt(fmt) "(stll) :" fmt #include #include -#include "ti_wilink_st.h" +#include /**********************************************************************/ /* internal functions */ diff --git a/drivers/staging/ti-st/ti_wilink_st.h b/include/linux/ti_wilink_st.h similarity index 100% rename from drivers/staging/ti-st/ti_wilink_st.h rename to include/linux/ti_wilink_st.h