[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1245843077-4442-1-git-send-email-cascardo@holoscopio.com>
Date: Wed, 24 Jun 2009 08:31:15 -0300
From: Thadeu Lima de Souza Cascardo <cascardo@...oscopio.com>
To: linux-kernel@...r.kernel.org
Cc: alan@...rguk.ukuu.org.uk, gregkh@...e.de,
linux-usb@...r.kernel.org, oliver@...kum.name,
Thadeu Lima de Souza Cascardo <cascardo@...oscopio.com>
Subject: [PATCH 1/3] Return ENODEV instead of EINVAL when trying to open ACM device.
Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@...oscopio.com>
---
drivers/usb/class/cdc-acm.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c
index 38bfdb0..02eb60b 100644
--- a/drivers/usb/class/cdc-acm.c
+++ b/drivers/usb/class/cdc-acm.c
@@ -550,7 +550,7 @@ static void acm_waker(struct work_struct *waker)
static int acm_tty_open(struct tty_struct *tty, struct file *filp)
{
struct acm *acm;
- int rv = -EINVAL;
+ int rv = -ENODEV;
int i;
dbg("Entering acm_tty_open.");
--
1.6.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists