Commit 719548ef authored by Ian Abbott's avatar Ian Abbott Committed by Greg Kroah-Hartman

Staging: comedi: Make comedi_auto_config() succeed when auto-configuration disabled.

Otherwise it would not work properly.

From: Ian Abbott <abbotti@mev.co.uk>
Cc: Frank Mori Hess <fmhess@users.sourceforge.net>
Cc: David Schleef <ds@schleef.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 6742c0af
...@@ -799,8 +799,10 @@ int comedi_auto_config(struct device *hardware_device, const char *board_name, c ...@@ -799,8 +799,10 @@ int comedi_auto_config(struct device *hardware_device, const char *board_name, c
int retval; int retval;
unsigned *private_data = NULL; unsigned *private_data = NULL;
if (!comedi_autoconfig) if (!comedi_autoconfig) {
return -ENODEV; dev_set_drvdata(hardware_device, NULL);
return 0;
}
minor = comedi_alloc_board_minor(hardware_device); minor = comedi_alloc_board_minor(hardware_device);
if(minor < 0) return minor; if(minor < 0) return minor;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment