Fix event mask setting for a specific 1.2 adapter

One 1.2 Broadcom adapter doesn't respond to the event mask HCI command
at all unless the second byte of the mask is 0xff. Strictly speaking
this is an invalid value because bits 0x02 and 0x04 are reserved.
However, no other adapters seem to mind and using 0xff instead of 0xf9
makes this particular adapter work properly.
diff --git a/plugins/hciops.c b/plugins/hciops.c
index 36a6006..4d8850f 100644
--- a/plugins/hciops.c
+++ b/plugins/hciops.c
@@ -341,7 +341,10 @@
 static void set_event_mask(int index)
 {
 	struct dev_info *dev = &devs[index];
-	uint8_t events[8] = { 0xff, 0x9f, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
+	/* The second byte is 0xff instead of 0x9f (two reserved bits
+	 * disabled) since a Broadcom 1.2 dongle doesn't respond to the
+	 * command otherwise */
+	uint8_t events[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
 
 	/* Events for 1.2 and newer controllers */
 	if (dev->ver.lmp_ver > 1) {