Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1614809
| From | Daniel Cashman <dan.a.cashman@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [Patch v2 3/3] staging: vt6656: Split arguments to avoid 80-char violation in rf.c |
| Date | 2017-04-02 22:50 +0200 |
| Message-ID | <trUBI-5rN-35@gated-at.bofh.it> (permalink) |
| References | <trGS5-55K-1@gated-at.bofh.it> <trUBH-5rN-7@gated-at.bofh.it> <trUBI-5rN-25@gated-at.bofh.it> <trUBI-5rN-23@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Dan Cashman <dan.a.cashman@gmail.com> Wrap arguments of call to vnt_control_out() to avoid exceeding 80 character limit, but maintain alignment. Signed-off-by: Daniel Cashman <dan.a.cashman@gmail.com> --- drivers/staging/vt6656/rf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/vt6656/rf.c b/drivers/staging/vt6656/rf.c index d157e5c..23581af 100644 --- a/drivers/staging/vt6656/rf.c +++ b/drivers/staging/vt6656/rf.c @@ -937,7 +937,8 @@ void vnt_rf_table_download(struct vnt_private *priv) memcpy(array, addr2, length); vnt_control_out(priv, MESSAGE_TYPE_WRITE, - value, MESSAGE_REQUEST_RF_CH2, length, array); + value, MESSAGE_REQUEST_RF_CH2, + length, array); length2 -= length; value += length; -- 2.7.4
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] staging: vt6656: Fix spaces, char limit and embedded func name in print. Daniel Cashman <dan.a.cashman@gmail.com> - 2017-04-02 05:30 +0200
Re: [PATCH] staging: vt6656: Fix spaces, char limit and embedded func name in print. Greg KH <gregkh@linuxfoundation.org> - 2017-04-02 08:10 +0200
[Patch v2 0/3] staging: vt6656: Fix checkpatch style violations. Daniel Cashman <dan.a.cashman@gmail.com> - 2017-04-02 22:50 +0200
[Patch v2 2/3] staging: vt6656: Replace embedded function name with __func__ in rf.c Daniel Cashman <dan.a.cashman@gmail.com> - 2017-04-02 22:50 +0200
[Patch v2 3/3] staging: vt6656: Split arguments to avoid 80-char violation in rf.c Daniel Cashman <dan.a.cashman@gmail.com> - 2017-04-02 22:50 +0200
[Patch v2 1/3] staging: vt6656: convert spaces to tabs for rf.c Daniel Cashman <dan.a.cashman@gmail.com> - 2017-04-02 22:50 +0200
csiph-web