diff mbox

hid/hid-sony: fix sony_set_operational_bt

Message ID 1272657239-29436-1-git-send-email-ospite@studenti.unina.it (mailing list archive)
State Accepted
Commit fddb33f2e8872fa4857dd29f0b71a523c9ed5577
Headers show

Commit Message

Antonio Ospite April 30, 2010, 7:53 p.m. UTC
None
diff mbox

Patch

diff --git a/drivers/hid/hid-sony.c b/drivers/hid/hid-sony.c
index 7502a4b..402d557 100644
--- a/drivers/hid/hid-sony.c
+++ b/drivers/hid/hid-sony.c
@@ -76,7 +76,7 @@  static int sony_set_operational_usb(struct hid_device *hdev)
 
 static int sony_set_operational_bt(struct hid_device *hdev)
 {
-	unsigned char buf[] = { 0x53, 0xf4,  0x42, 0x03, 0x00, 0x00 };
+	unsigned char buf[] = { 0xf4,  0x42, 0x03, 0x00, 0x00 };
 	return hdev->hid_output_raw_report(hdev, buf, sizeof(buf), HID_FEATURE_REPORT);
 }