Hi Jakub, On Fri, Jan 09, 2015, Jakub Pawlowski wrote: > if (hdev->discovery.rssi != HCI_RSSI_INVALID && > - (rssi < hdev->discovery.rssi || rssi == HCI_RSSI_INVALID)) > + (rssi == HCI_RSSI_INVALID || (rssi < hdev->discovery.rssi && > + !test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks)))) This doesn't look like it's following the coding-style of split lines. You probably need to move the "(rssi < hdev->discovery.rssi &&" to start from a new line so that you can align the "!test_bit(..." properly. Johan -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html