Hi David, On Tue, Aug 10, 2010, David Scherba wrote: > --- a/lib/hci_lib.h > +++ b/lib/hci_lib.h > @@ -169,6 +169,11 @@ static inline int hci_test_bit(int nr, void *addr) > return *((uint32_t *) addr + (nr >> 5)) & (1 << (nr & 31)); > } > > +static inline int ignore_device(struct hci_dev_info *di) > +{ > + return hci_test_bit(HCI_RAW, &di->flags) || di->type >> 4 != HCI_BREDR; > +} Since this is hci_lib.h (something I didn't realize in the previous review) the function should follow the same namespace as all other functions in the header file, i.e. hci_*. However, does the function really need to be exported in this public library header file, i.e. isn't there some private header file that could be used instead? 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