From: Seung-Woo Kim Date: Wed, 17 Jul 2019 01:56:16 +0000 (+0900) Subject: Bluetooth: fix wrong indent in __hci_req_update_{scan/adv}_rsp_data() X-Git-Tag: accepted/tizen/unified/20191111.065916~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ab3b0fa5eea6d36d6e069f8c8b920253ff24d81;p=platform%2Fkernel%2Flinux-rpi.git Bluetooth: fix wrong indent in __hci_req_update_{scan/adv}_rsp_data() 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 --- diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c index 7069cd0..71e3e1e 100644 --- a/net/bluetooth/hci_request.c +++ b/net/bluetooth/hci_request.c @@ -1220,11 +1220,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 && @@ -1253,11 +1253,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)) @@ -1369,11 +1369,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 && @@ -1398,11 +1398,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 &&