[PATCH 1/1] Documentation: Add dt-binding for TI-btwilink driver

2015-04-26 Thread Gigi Joseph
btwilink binds bluetooth hci0 interface with the shared transport driver Signed-off-by: Gigi Joseph --- Documentation/devicetree/bindings/btwilink.txt | 15 +++ 1 file changed, 15 insertions(+) create mode 100644 Documentation/devicetree/bindings/btwilink.txt diff --git a

[PATCH v2 3/6] btwilink: add minimal device tree support

2015-03-20 Thread Gigi Joseph
Add minimal device tree support to the btwilink driver that is used for binding bluetooth with the ti-st shared transport driver. Signed-off-by: Eyal Reizer Signed-off-by: bvijay Signed-off-by: Gigi Joseph --- Changes in v2: * Reformat device_id table to match other drivers

[PATCH 6/6] drivers:misc:ti-st: protect against bad packets

2015-01-08 Thread Gigi Joseph
Signed-off-by: Gigi Joseph --- drivers/misc/ti-st/st_core.c | 24 ++-- 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/drivers/misc/ti-st/st_core.c b/drivers/misc/ti-st/st_core.c index 54be83d..c8c6a36 100644 --- a/drivers/misc/ti-st/st_core.c +++ b/drivers/misc/ti

[PATCH 5/6] drivers: misc: ti-st: fix null pointer exception in st_kim_ref()

2015-01-08 Thread Gigi Joseph
] Flags: NzCv IRQs on FIQs on Mode SVC_32 ISA ARM Segment kernel [ 12.789274] Control: 10c5387d Table: abde4059 DAC: 0015 [ 12.795315] Process kworker/u3:0 (pid: 1235, stack limit = 0xecd7c248) Signed-off-by: Sekhar Nori Signed-off-by: Gigi Joseph --- drivers/misc/ti-st/st_kim.c | 12

[PATCH 4/6] drivers: misc: ti-st: fix debugfs creation error handling

2015-01-08 Thread Gigi Joseph
In case the debugfs creation fails the whole init process was failing. There is no need to do this as the shared transport can work without it. Fix it so it just reports the failure and continue. Signed-off-by: Eyal Reizer Signed-off-by: Gigi Joseph --- drivers/misc/ti-st/st_kim.c | 6

[PATCH 3/6] btwilink: add minimal device tree support

2015-01-08 Thread Gigi Joseph
Add minimal device tree support to the btwilink driver that is used for binding bluetooth with the ti-st shared transport driver. Signed-off-by: Eyal Reizer Signed-off-by: bvijay Signed-off-by: Gigi Joseph --- drivers/bluetooth/btwilink.c | 11 +++ 1 file changed, 11 insertions

[PATCH 2/6] st_kim: allow suspend if callback is not registered

2015-01-08 Thread Gigi Joseph
Suspend/resume was failing if callbacks were not registered. As it is ok not to do anything when suspending fix this so it soen't return an error and allow the system to suspend. Signed-off-by: Eyal Reizer Signed-off-by: Gigi Joseph --- drivers/misc/ti-st/st_kim.c | 4 ++-- 1 file chang

[PATCH 1/6] ti-st: add device tree support

2015-01-08 Thread Gigi Joseph
by side Signed-off-by: Gigi Joseph --- drivers/misc/ti-st/st_kim.c | 97 drivers/misc/ti-st/st_ll.c | 17 +++- include/linux/ti_wilink_st.h | 1 + 3 files changed, 105 insertions(+), 10 deletions(-) diff --git a/drivers/misc/ti-st/st_kim.c b