summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorJuha Kuikka <juha.kuikka@synapse.com>2017-02-24 16:13:25 -0800
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2017-02-25 14:42:01 +0200
commitcd1eb0cfbf54111484ae87d2428c78966d4e9d1a (patch)
tree48fe1b4ab4be3764cd766a26fc9e35b26410c7f6 /profiles
parent41d605fe6ed06cfbf2ab681aa531a752916fdfda (diff)
downloadbluez-cd1eb0cfbf54111484ae87d2428c78966d4e9d1a.tar.gz
hog: Move dis_notify around
No functional changes
Diffstat (limited to 'profiles')
-rw-r--r--profiles/input/hog-lib.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/profiles/input/hog-lib.c b/profiles/input/hog-lib.c
index b93324a12..71de3a1b8 100644
--- a/profiles/input/hog-lib.c
+++ b/profiles/input/hog-lib.c
@@ -1372,6 +1372,16 @@ static void foreach_hog_service(struct gatt_db_attribute *attr, void *user_data)
hog_attach_instace(hog, attr);
}
+static void dis_notify(uint8_t source, uint16_t vendor, uint16_t product,
+ uint16_t version, void *user_data)
+{
+ struct bt_hog *hog = user_data;
+
+ hog->vendor = vendor;
+ hog->product = product;
+ hog->version = version;
+}
+
struct bt_hog *bt_hog_new(int fd, const char *name, uint16_t vendor,
uint16_t product, uint16_t version,
struct gatt_db *db)
@@ -1458,16 +1468,6 @@ static void hog_attach_scpp(struct bt_hog *hog, struct gatt_primary *primary)
bt_scpp_attach(hog->scpp, hog->attrib);
}
-static void dis_notify(uint8_t source, uint16_t vendor, uint16_t product,
- uint16_t version, void *user_data)
-{
- struct bt_hog *hog = user_data;
-
- hog->vendor = vendor;
- hog->product = product;
- hog->version = version;
-}
-
static void hog_attach_dis(struct bt_hog *hog, struct gatt_primary *primary)
{
if (hog->dis) {