mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-25 02:48:21 +00:00
staging: comedi: coding style fixes found by checkpatch.pl
The patch removes "WARNING: Prefer using '"%s...", __func__' to using 'xxxxxxxx', this function's name, in a string" warnings reported by checkpatch.pl script. Signed-off-by: Simo Koskinen <koskisoft@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d894e25b52
commit
423a8a6eac
@ -995,12 +995,12 @@ int comedi_auto_config(struct device *hardware_device,
|
|||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (!hardware_device) {
|
if (!hardware_device) {
|
||||||
pr_warn("BUG! comedi_auto_config called with NULL hardware_device\n");
|
pr_warn("BUG! %s called with NULL hardware_device\n", __func__);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
if (!driver) {
|
if (!driver) {
|
||||||
dev_warn(hardware_device,
|
dev_warn(hardware_device,
|
||||||
"BUG! comedi_auto_config called with NULL comedi driver\n");
|
"BUG! %s called with NULL comedi driver\n", __func__);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user