Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH v3 1/3] android: Add wrapper function for get remote dev properties
@ 2014-01-07 14:13 Lukasz Rymanowski
  2014-01-07 14:13 ` [PATCH v3 2/3] android: Move get_remote_device_props up in the file Lukasz Rymanowski
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Lukasz Rymanowski @ 2014-01-07 14:13 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: johan.hedberg, szymon.janc, Lukasz Rymanowski

---
 android/bluetooth.c | 23 ++++++++++++++---------
 1 file changed, 14 insertions(+), 9 deletions(-)

diff --git a/android/bluetooth.c b/android/bluetooth.c
index 3cbf68d..f281fcf 100644
--- a/android/bluetooth.c
+++ b/android/bluetooth.c
@@ -2673,6 +2673,19 @@ static uint8_t get_device_timestamp(struct device *dev)
 	return HAL_STATUS_SUCCESS;
 }
 
+static void get_remote_device_props(struct device *dev)
+{
+	get_device_name(dev);
+	get_device_uuids(dev);
+	get_device_class(dev);
+	get_device_type(dev);
+	get_device_service_rec(dev);
+	get_device_friendly_name(dev);
+	get_device_rssi(dev);
+	get_device_version_info(dev);
+	get_device_timestamp(dev);
+}
+
 static void handle_get_remote_device_props_cmd(const void *buf, uint16_t len)
 {
 	const struct hal_cmd_get_remote_device_props *cmd = buf;
@@ -2688,15 +2701,7 @@ static void handle_get_remote_device_props_cmd(const void *buf, uint16_t len)
 		goto failed;
 	}
 
-	get_device_name(l->data);
-	get_device_uuids(l->data);
-	get_device_class(l->data);
-	get_device_type(l->data);
-	get_device_service_rec(l->data);
-	get_device_friendly_name(l->data);
-	get_device_rssi(l->data);
-	get_device_version_info(l->data);
-	get_device_timestamp(l->data);
+	get_remote_device_props(l->data);
 
 	status = HAL_STATUS_SUCCESS;
 
-- 
1.8.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-01-08 12:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-07 14:13 [PATCH v3 1/3] android: Add wrapper function for get remote dev properties Lukasz Rymanowski
2014-01-07 14:13 ` [PATCH v3 2/3] android: Move get_remote_device_props up in the file Lukasz Rymanowski
2014-01-07 14:13 ` [PATCH v3 3/3] android: Send remote devices properties on enable Lukasz Rymanowski
2014-01-08 12:19 ` [PATCH v3 1/3] android: Add wrapper function for get remote dev properties Szymon Janc

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox