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/20200709.164653~111 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eaaf395664419c081f7bcb2095a9a5ed0fe537d4;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 fa84baa9..4ed4110 100644 --- a/net/bluetooth/hci_request.c +++ b/net/bluetooth/hci_request.c @@ -1235,11 +1235,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 && @@ -1268,11 +1268,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)) @@ -1393,11 +1393,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 && @@ -1422,11 +1422,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 &&