Bluetooth: fix wrong indent in __hci_req_update_{scan/adv}_rsp_data()
authorSeung-Woo Kim <sw0312.kim@samsung.com>
Wed, 17 Jul 2019 01:56:16 +0000 (10:56 +0900)
committerHoegeun Kwon <hoegeun.kwon@samsung.com>
Thu, 3 Aug 2023 08:43:51 +0000 (17:43 +0900)
The commit ac160e08af69 ("Bluetooth: Add Advertising Packet
Configuration") introduces wrong indent which causes build warning for
gcc-7. Fix the wrong indent.

Change-Id: Ia0bde8a8f9660ccf8fa312e3c3ec6c8cb76863f1
Fixes: ac160e08af69 ("Bluetooth: Add Advertising Packet Configuration")
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
net/bluetooth/hci_request.c

index 9fc0e0d..c8bb2da 100644 (file)
@@ -1744,11 +1744,11 @@ void __hci_req_update_scan_rsp_data(struct hci_request *req, u8 instance)
                else
                        len = create_default_scan_rsp_data(hdev, pdu.data);
 #ifdef TIZEN_BT
-       /* Advertising scan response data is handled in bluez.
-        * This value will be updated only when application request the update
-        * using adapter_set_scan_rsp_data()
-        */
-       return;
+               /* Advertising scan response data is handled in bluez.
+                * This value will be updated only when application request the update
+                * using adapter_set_scan_rsp_data()
+                */
+               return;
 #else
 
                if (hdev->scan_rsp_data_len == len &&
@@ -1777,11 +1777,11 @@ void __hci_req_update_scan_rsp_data(struct hci_request *req, u8 instance)
                else
                        len = create_default_scan_rsp_data(hdev, cp.data);
 #ifdef TIZEN_BT
-       /* Advertising scan response data is handled in bluez.
-        * This value will be updated only when application request the update
-        * using adapter_set_scan_rsp_data()
-        */
-       return;
+               /* Advertising scan response data is handled in bluez.
+                * This value will be updated only when application request the update
+                * using adapter_set_scan_rsp_data()
+                */
+               return;
 #else
                if (hdev->scan_rsp_data_len == len &&
                    !memcmp(cp.data, hdev->scan_rsp_data, len))
@@ -1905,11 +1905,11 @@ void __hci_req_update_adv_data(struct hci_request *req, u8 instance)
                len = create_instance_adv_data(hdev, instance, pdu.data);
 
 #ifdef TIZEN_BT
-       /* Bluez will handle the advertising data including the flag and tx
-        * power. This value will be updated only when application request the
-        * update using adapter_set_advertising_data().
-       */
-       return;
+               /* Bluez will handle the advertising data including the flag and tx
+                * power. This value will be updated only when application request the
+                * update using adapter_set_advertising_data().
+               */
+               return;
 #else
                /* There's nothing to do if the data hasn't changed */
                if (hdev->adv_data_len == len &&
@@ -1935,11 +1935,11 @@ void __hci_req_update_adv_data(struct hci_request *req, u8 instance)
                len = create_instance_adv_data(hdev, instance, cp.data);
 
 #ifdef TIZEN_BT
-       /* Bluez will handle the advertising data including the flag and tx
-        * power. This value will be updated only when application request the
-        * update using adapter_set_advertising_data().
-       */
-       return;
+               /* Bluez will handle the advertising data including the flag and tx
+                * power. This value will be updated only when application request the
+                * update using adapter_set_advertising_data().
+               */
+               return;
 #else
                /* There's nothing to do if the data hasn't changed */
                if (hdev->adv_data_len == len &&