Commit a92cec27 authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

usb: ftdi-elan: Coalesce string fragment

Make it easier to grep for this.

Neaten a trailing statement.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5acc6e40
...@@ -55,8 +55,8 @@ MODULE_LICENSE("GPL"); ...@@ -55,8 +55,8 @@ MODULE_LICENSE("GPL");
#define INT_MODULE_PARM(n, v) static int n = v;module_param(n, int, 0444) #define INT_MODULE_PARM(n, v) static int n = v;module_param(n, int, 0444)
static bool distrust_firmware = 1; static bool distrust_firmware = 1;
module_param(distrust_firmware, bool, 0); module_param(distrust_firmware, bool, 0);
MODULE_PARM_DESC(distrust_firmware, "true to distrust firmware power/overcurren" MODULE_PARM_DESC(distrust_firmware,
"t setup"); "true to distrust firmware power/overcurrent setup");
extern struct platform_driver u132_platform_driver; extern struct platform_driver u132_platform_driver;
static struct workqueue_struct *status_queue; static struct workqueue_struct *status_queue;
static struct workqueue_struct *command_queue; static struct workqueue_struct *command_queue;
...@@ -590,8 +590,7 @@ static void ftdi_elan_status_work(struct work_struct *work) ...@@ -590,8 +590,7 @@ static void ftdi_elan_status_work(struct work_struct *work)
ftdi_elan_flush_targets(ftdi); ftdi_elan_flush_targets(ftdi);
work_delay_in_msec = 250; work_delay_in_msec = 250;
} else { } else {
dev_err(&ftdi->udev->dev, "PCI device has disappeared\n" dev_err(&ftdi->udev->dev, "PCI device has disappeared\n");
);
ftdi_elan_cancel_targets(ftdi); ftdi_elan_cancel_targets(ftdi);
work_delay_in_msec = 500; work_delay_in_msec = 500;
ftdi->enumerated = 0; ftdi->enumerated = 0;
......
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