Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1646662 > unrolled thread
| Started by | Rui Teng <rui.teng@linux.vnet.ibm.com> |
|---|---|
| First post | 2017-05-22 11:30 +0200 |
| Last post | 2017-05-22 15:50 +0200 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] drivers/staging/speakup: fix some coding style problem in spk_ttyio.c Rui Teng <rui.teng@linux.vnet.ibm.com> - 2017-05-22 11:30 +0200
Re: [PATCH] drivers/staging/speakup: fix some coding style problem in spk_ttyio.c Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2017-05-22 11:40 +0200
Re: [PATCH] drivers/staging/speakup: fix some coding style problem in spk_ttyio.c Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2017-05-22 15:50 +0200
| From | Rui Teng <rui.teng@linux.vnet.ibm.com> |
|---|---|
| Date | 2017-05-22 11:30 +0200 |
| Subject | [PATCH] drivers/staging/speakup: fix some coding style problem in spk_ttyio.c |
| Message-ID | <tJRP5-3Ve-33@gated-at.bofh.it> |
This is a patch to the spk_ttyio.c file which fixes up the problems
reported by the checkpatch.pl tool.
Signed-off-by: Rui Teng <rui.teng@linux.vnet.ibm.com>
---
drivers/staging/speakup/spk_ttyio.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/speakup/spk_ttyio.c b/drivers/staging/speakup/spk_ttyio.c
index 6e0f042f6a44..791da6e6d6ed 100644
--- a/drivers/staging/speakup/spk_ttyio.c
+++ b/drivers/staging/speakup/spk_ttyio.c
@@ -25,10 +25,8 @@ static int spk_ttyio_ldisc_open(struct tty_struct *tty)
speakup_tty = tty;
ldisc_data = kmalloc(sizeof(struct spk_ldisc_data), GFP_KERNEL);
- if (!ldisc_data) {
- pr_err("speakup: Failed to allocate ldisc_data.\n");
+ if (!ldisc_data)
return -ENOMEM;
- }
sema_init(&ldisc_data->sem, 0);
ldisc_data->buf_free = true;
@@ -50,6 +48,7 @@ static int spk_ttyio_receive_buf2(struct tty_struct *tty,
if (spk_ttyio_synth->read_buff_add) {
int i;
+
for (i = 0; i < count; i++)
spk_ttyio_synth->read_buff_add(cp[i]);
@@ -61,7 +60,8 @@ static int spk_ttyio_receive_buf2(struct tty_struct *tty,
return 0;
/* Make sure the consumer has read buf before we have seen
- * buf_free == true and overwrite buf */
+ * buf_free == true and overwrite buf
+ */
mb();
ldisc_data->buf = cp[0];
@@ -162,6 +162,7 @@ static int spk_ttyio_out(struct spk_synth *in_synth, const char ch)
{
if (in_synth->alive && speakup_tty && speakup_tty->ops->write) {
int ret = speakup_tty->ops->write(speakup_tty, &ch, 1);
+
if (ret == 0)
/* No room */
return 0;
@@ -204,7 +205,8 @@ static unsigned char ttyio_in(int timeout)
rv = ldisc_data->buf;
/* Make sure we have read buf before we set buf_free to let
- * the producer overwrite it */
+ * the producer overwrite it
+ */
mb();
ldisc_data->buf_free = true;
/* Let TTY push more characters */
--
2.11.0
[toc] | [next] | [standalone]
| From | Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
|---|---|
| Date | 2017-05-22 11:40 +0200 |
| Subject | Re: [PATCH] drivers/staging/speakup: fix some coding style problem in spk_ttyio.c |
| Message-ID | <tJRYJ-3Yq-5@gated-at.bofh.it> |
| In reply to | #1646662 |
On Sun, May 21, 2017 at 02:43:47AM +0800, Rui Teng wrote: > This is a patch to the spk_ttyio.c file which fixes up the problems > reported by the checkpatch.pl tool. Be specific as to what you are fixing up please. And don't do more than one "type" of cleanup in the same patch. thanks, greg k-h
[toc] | [prev] | [next] | [standalone]
| From | Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
|---|---|
| Date | 2017-05-22 15:50 +0200 |
| Subject | Re: [PATCH] drivers/staging/speakup: fix some coding style problem in spk_ttyio.c |
| Message-ID | <tJVSF-6lF-3@gated-at.bofh.it> |
| In reply to | #1646662 |
On Sun, May 21, 2017 at 02:43:47AM +0800, Rui Teng wrote: > This is a patch to the spk_ttyio.c file which fixes up the problems > reported by the checkpatch.pl tool. "the problems reported" is very very very vague. Please read my last email to you...
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web