瀏覽代碼

staging: comedi: usbduxsigma: rename usbdux_pwm_cancel()

Rename the function so it has namespace associated with the driver.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
H Hartley Sweeten 12 年之前
父節點
當前提交
fd245192b1
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      drivers/staging/comedi/drivers/usbduxsigma.c

+ 3 - 3
drivers/staging/comedi/drivers/usbduxsigma.c

@@ -1157,8 +1157,8 @@ static void usbdux_pwm_stop(struct usbduxsigma_private *devpriv, int do_unlink)
 	devpriv->pwm_cmd_running = 0;
 }
 
-static int usbdux_pwm_cancel(struct comedi_device *dev,
-			     struct comedi_subdevice *s)
+static int usbduxsigma_pwm_cancel(struct comedi_device *dev,
+				  struct comedi_subdevice *s)
 {
 	struct usbduxsigma_private *devpriv = dev->private;
 
@@ -1340,7 +1340,7 @@ static int usbduxsigma_pwm_config(struct comedi_device *dev,
 			return -EINVAL;
 		return usbduxsigma_pwm_start(dev, s);
 	case INSN_CONFIG_DISARM:
-		return usbdux_pwm_cancel(dev, s);
+		return usbduxsigma_pwm_cancel(dev, s);
 	case INSN_CONFIG_GET_PWM_STATUS:
 		data[1] = devpriv->pwm_cmd_running;
 		return 0;