Joe Perches <joe@xxxxxxxxxxx> writes: > On Wed, 2013-10-30 at 12:42 +0100, Michal Kazior wrote: >> Some errors were handled too silently. > > These aren't really debug prints. Yeah, the patch title needs work. >> diff --git a/drivers/net/wireless/ath/ath10k/pci.c b/drivers/net/wireless/ath/ath10k/pci.c > [] >> @@ -1860,8 +1862,10 @@ static int ath10k_pci_hif_power_up(struct ath10k *ar) >> ath10k_do_pci_wake(ar); >> >> ret = ath10k_pci_ce_init(ar); >> - if (ret) >> + if (ret) { >> + ath10k_err("could not initialize CE (%d)\n", ret); > > Rather than try to reinterpret the function name, > perhaps it's better to simply emit the function name > as is done most other places like: > > ath10k_err("ath10k_pci_ce_init failed: (%d)\n", ret); I don't think that's any better. When function names change but people forget to change the error message and then it's even more confusing. And I prefer that a developer puts a bit more effort to the warning message by writing it in english instead of just copying the function name. -- Kalle Valo -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html