Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1591433
| From | simran singhal <singhalsimran0@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 5/7] staging: media: Remove multiple assignments |
| Date | 2017-03-02 21:00 +0100 |
| Message-ID | <tgF3k-72m-29@gated-at.bofh.it> (permalink) |
| References | <tgF3j-72m-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Remove multiple assignments by factorizing them. Problem found using checkpatch.pl CHECK: multiple assignments should be avoided Signed-off-by: simran singhal <singhalsimran0@gmail.com> --- drivers/staging/media/atomisp/i2c/gc2235.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/media/atomisp/i2c/gc2235.c b/drivers/staging/media/atomisp/i2c/gc2235.c index 198df22..165dcb3 100644 --- a/drivers/staging/media/atomisp/i2c/gc2235.c +++ b/drivers/staging/media/atomisp/i2c/gc2235.c @@ -259,7 +259,8 @@ static int gc2235_get_intg_factor(struct i2c_client *client, return -EINVAL; /* pixel clock calculattion */ - buf->vt_pix_clk_freq_mhz = dev->vt_pix_clk_freq_mhz = 30000000; + buf->vt_pix_clk_freq_mhz = 30000000; + dev->vt_pix_clk_freq_mhz = 30000000; /* get integration time */ buf->coarse_integration_time_min = GC2235_COARSE_INTG_TIME_MIN; -- 2.7.4
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 5/7] staging: media: Remove multiple assignments simran singhal <singhalsimran0@gmail.com> - 2017-03-02 21:00 +0100
csiph-web