Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 858bc074 authored by Himanshu Rawat's avatar Himanshu Rawat
Browse files

HidHost: Typo on function name

Bug: 324094542
Test: mmm packages/modules/Bluetooth
Flag: EXEMPT no op
Change-Id: Id5d80e454ece7b288a1d096204cdec3c9975969b
parent 14a42fb6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -390,7 +390,7 @@ public class HidHostService extends ProfileService {
                            handleMessageOnHandshake(msg);
                            break;
                        case MESSAGE_SET_REPORT:
                            handleMessageSetProtocol(msg);
                            handleMessageSetReport(msg);
                            break;
                        case MESSAGE_ON_VIRTUAL_UNPLUG:
                            handleMessageOnVirtualUnplug(msg);
@@ -492,7 +492,7 @@ public class HidHostService extends ProfileService {
        broadcastVirtualUnplugStatus(device, status);
    }

    private void handleMessageSetProtocol(Message msg) {
    private void handleMessageSetReport(Message msg) {
        BluetoothDevice device = (BluetoothDevice) msg.obj;
        Bundle data = msg.getData();
        byte reportType = data.getByte(BluetoothHidHost.EXTRA_REPORT_TYPE);