Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1410619
| From | Luis de Bethencourt <luisbg@osg.samsung.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] staging: iio: accel: remove impossible condition |
| Date | 2016-05-31 23:00 +0200 |
| Message-ID | <rEYVz-7tn-1@gated-at.bofh.it> (permalink) |
| References | <rEXPQ-6Rh-5@gated-at.bofh.it> <rEYsx-7jG-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 31/05/16 21:23, Jonathan Cameron wrote: > > > On 31 May 2016 20:47:50 BST, Luis de Bethencourt <luisbg@osg.samsung.com> wrote: >> val is set to the value of ret right after ret is checked. If ret is >> not >> zero it goes to error_ret. So only value ret can have is zero, which >> makes >> the switch (val & 0x03) only match the case 0x00. Removing the switch >> and >> since val is only used for this, removing val as well. > There is clearly an issue here. However it looks like it is that if(ret) which is wrong. > > The code as it stands clearly doesn't work as intended. Fixing the bug would be > > more useful than removing code that 'should' be accessible. > > I happen to fire the relevant hardware up yesterday for the first time in a while so > > can easily verify the operation of a fix if you want to take another look. > > Jonathan Jonathan and Andrew are right. sca3000_read_ctrl_reg() returns a negative number on failure. So line 597 should be: if (ret < 0) If everything goes well in sca3000_read_ctrl_reg() it returns st->rx[0], which explains the switch case. I am going to send a new patch with this fix. Thanks so much for the review and sorry for the initial confusion, Luis
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH] staging: iio: accel: remove impossible condition Luis de Bethencourt <luisbg@osg.samsung.com> - 2016-05-31 21:50 +0200
Re: [PATCH] staging: iio: accel: remove impossible condition "Andrew F. Davis" <afd@ti.com> - 2016-05-31 22:20 +0200
Re: [PATCH] staging: iio: accel: remove impossible condition Jonathan Cameron <jic23@kernel.org> - 2016-05-31 22:30 +0200
Re: [PATCH] staging: iio: accel: remove impossible condition Luis de Bethencourt <luisbg@osg.samsung.com> - 2016-05-31 23:00 +0200
csiph-web