aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/staging/comedi/comedi_fops.c
diff options
context:
space:
mode:
authorBryan Garza <bry@riseup.net>2017-08-23 22:37:00 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-08-23 16:26:10 -0700
commite4f857f739fbd15fd36f10e7caab95779c1dc1e4 (patch)
treec92a37f0577138c8fe7ea6576892397ce760d578 /drivers/staging/comedi/comedi_fops.c
parentstaging: ccree: save ciphertext for CTS IV (diff)
downloadwireguard-linux-e4f857f739fbd15fd36f10e7caab95779c1dc1e4.tar.xz
wireguard-linux-e4f857f739fbd15fd36f10e7caab95779c1dc1e4.zip
Staging: comedi: comedi_fops: fix dev_err() warning style
Changed dev_err() call to use function name constant instead of hardcoded string. Issue found by checkpatch. Signed-off-by: Bryan Garza <bry@riseup.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/comedi/comedi_fops.c')
-rw-r--r--drivers/staging/comedi/comedi_fops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/comedi/comedi_fops.c b/drivers/staging/comedi/comedi_fops.c
index 34ca7823255d..e19e395b0e44 100644
--- a/drivers/staging/comedi/comedi_fops.c
+++ b/drivers/staging/comedi/comedi_fops.c
@@ -745,7 +745,7 @@ static void do_become_nonbusy(struct comedi_device *dev,
wake_up_interruptible_all(&async->wait_head);
} else {
dev_err(dev->class_dev,
- "BUG: (?) do_become_nonbusy called with async=NULL\n");
+ "BUG: (?) %s called with async=NULL\n", __func__);
s->busy = NULL;
}
}