From: YAMANE Toshiaki <yamanetoshi@gmail.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Joe Perches <joe@perches.com>,
Dan Carpenter <dan.carpenter@oracle.com>,
devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org,
YAMANE Toshiaki <yamanetoshi@gmail.com>
Subject: [PATCH] staging/serqt_usb2: Refactor qt_status_change_check() in serqt_usb2.c
Date: Thu, 29 Nov 2012 13:57:56 +0900 [thread overview]
Message-ID: <1354165076-30273-1-git-send-email-yamanetoshi@gmail.com> (raw)
Improved position to increment variable i,
And typo fixes.
Signed-off-by: YAMANE Toshiaki <yamanetoshi@gmail.com>
---
drivers/staging/serqt_usb2/serqt_usb2.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/serqt_usb2/serqt_usb2.c b/drivers/staging/serqt_usb2/serqt_usb2.c
index 1b3e995..095d6f2 100644
--- a/drivers/staging/serqt_usb2/serqt_usb2.c
+++ b/drivers/staging/serqt_usb2/serqt_usb2.c
@@ -309,26 +309,26 @@ static void qt_status_change_check(struct tty_struct *tty,
case 0x00:
if (i > (RxCount - 4)) {
dev_dbg(&port->dev,
- "Illegal escape seuences in received data\n");
+ "Illegal escape sequence in received data\n");
break;
}
- ProcessLineStatus(qt_port, data[i + 3]);
-
i += 3;
+ ProcessLineStatus(qt_port, data[i]);
+
flag = 1;
break;
case 0x01:
if (i > (RxCount - 4)) {
dev_dbg(&port->dev,
- "Illegal escape seuences in received data\n");
+ "Illegal escape sequence in received data\n");
break;
}
- ProcessModemStatus(qt_port, data[i + 3]);
-
i += 3;
+ ProcessModemStatus(qt_port, data[i]);
+
flag = 1;
break;
--
1.7.9.5
next reply other threads:[~2012-11-29 4:58 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-29 4:57 YAMANE Toshiaki [this message]
2012-11-30 2:10 ` Greg Kroah-Hartman
2012-11-30 5:25 ` YAMANE Toshiaki
2012-11-30 8:25 ` Dan Carpenter
2012-11-30 12:53 ` YAMANE Toshiaki
-- strict thread matches above, loose matches on Subject: below --
2012-11-16 20:19 YAMANE Toshiaki
2012-11-16 20:58 ` Dan Carpenter
2012-11-17 1:32 ` Joe Perches
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1354165076-30273-1-git-send-email-yamanetoshi@gmail.com \
--to=yamanetoshi@gmail.com \
--cc=dan.carpenter@oracle.com \
--cc=devel@driverdev.osuosl.org \
--cc=gregkh@linuxfoundation.org \
--cc=joe@perches.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®