Staging: comedi: newer gcc warning fixes
Fix GCC warning in call to request_module(): "format not a string literal and no format arguments". From: Ian Abbott <abbotti@mev.co.uk> Cc: Frank Mori Hess <fmhess@users.sourceforge.net> Cc: David Schleef <ds@schleef.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
1b9f641205
commit
56d92c60e6
1 changed files with 1 additions and 3 deletions
|
@ -1757,7 +1757,6 @@ void do_become_nonbusy(comedi_device *dev, comedi_subdevice *s)
|
||||||
|
|
||||||
static int comedi_open(struct inode *inode, struct file *file)
|
static int comedi_open(struct inode *inode, struct file *file)
|
||||||
{
|
{
|
||||||
char mod[32];
|
|
||||||
const unsigned minor = iminor(inode);
|
const unsigned minor = iminor(inode);
|
||||||
struct comedi_device_file_info *dev_file_info =
|
struct comedi_device_file_info *dev_file_info =
|
||||||
comedi_get_device_file_info(minor);
|
comedi_get_device_file_info(minor);
|
||||||
|
@ -1793,10 +1792,9 @@ static int comedi_open(struct inode *inode, struct file *file)
|
||||||
|
|
||||||
dev->in_request_module = 1;
|
dev->in_request_module = 1;
|
||||||
|
|
||||||
sprintf(mod, "char-major-%i-%i", COMEDI_MAJOR, dev->minor);
|
|
||||||
#ifdef CONFIG_KMOD
|
#ifdef CONFIG_KMOD
|
||||||
mutex_unlock(&dev->mutex);
|
mutex_unlock(&dev->mutex);
|
||||||
request_module(mod);
|
request_module("char-major-%i-%i", COMEDI_MAJOR, dev->minor);
|
||||||
mutex_lock(&dev->mutex);
|
mutex_lock(&dev->mutex);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue