On Sun, Dec 07 2014, Julia Lawall <Julia.Lawall@xxxxxxx> wrote: > Replace a misspelled function name by %s and then __func__. > > The function name begins with pci, not cpci. ... > result = cpci_hotplug_init(debug); > if (result) { > - err("cpci_hotplug_init with error %d\n", result); > + err("%s with error %d\n", __func__, result); > return result; > } This one seems to be a false positive; I think the err() is reporting on the result from the call of the function which is indeed called cpci_hotplug_init. I just skimmed the rest quickly, but they seem ok. Rasmus -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html