diff mbox series

iio: dpot-dac: fix code comment in dpot_dac_read_raw()

Message ID 20200826000844.GA16807@embeddedor (mailing list archive)
State New, archived
Headers show
Series iio: dpot-dac: fix code comment in dpot_dac_read_raw() | expand

Commit Message

Gustavo A. R. Silva Aug. 26, 2020, 12:08 a.m. UTC
After the replacement of the /* fall through */ comment with the
fallthrough pseudo-keyword macro, the natural reading of a code
comment was broken.

Fix the natural reading of such a comment and make it intelligible.

Reported-by: Peter Rosin <peda@axentia.se>
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
---
 drivers/iio/dac/dpot-dac.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Peter Rosin Aug. 26, 2020, 7:04 a.m. UTC | #1
Hi!

On 2020-08-26 02:08, Gustavo A. R. Silva wrote:
> After the replacement of the /* fall through */ comment with the
> fallthrough pseudo-keyword macro, the natural reading of a code
> comment was broken.
> 
> Fix the natural reading of such a comment and make it intelligible.
> 
> Reported-by: Peter Rosin <peda@axentia.se>
> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>

Excellent, thanks for the quick turnaround!

And just to be explicit, this fix is for 5.9.

Acked-by: Peter Rosin <peda@axentia.se>

Cheers,
Peter
Peter Rosin Aug. 26, 2020, 2:16 p.m. UTC | #2
On 2020-08-26 16:17, Gustavo A. R. Silva wrote:
>> And just to be explicit, this fix is for 5.9.
>>
>> Acked-by: Peter Rosin <peda@axentia.se>
>>
> 
> If you don't mind I can add this to my tree for 5.9-rc4
> and send it directly to Linus.

Fine by me, Jonathan might think differently but I can't find a reason why.
Just about nothing is happening in that file and the risk for conflicts is
negligible.

Cheers,
Peter
Gustavo A. R. Silva Aug. 26, 2020, 2:17 p.m. UTC | #3
Hi,

On 8/26/20 02:04, Peter Rosin wrote:
> Hi!
> 
> On 2020-08-26 02:08, Gustavo A. R. Silva wrote:
>> After the replacement of the /* fall through */ comment with the
>> fallthrough pseudo-keyword macro, the natural reading of a code
>> comment was broken.
>>
>> Fix the natural reading of such a comment and make it intelligible.
>>
>> Reported-by: Peter Rosin <peda@axentia.se>
>> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
> 
> Excellent, thanks for the quick turnaround!
> 

No problem. :)

> And just to be explicit, this fix is for 5.9.
> 
> Acked-by: Peter Rosin <peda@axentia.se>
> 

If you don't mind I can add this to my tree for 5.9-rc4
and send it directly to Linus.

Thanks
--
Gustavo
Gustavo A. R. Silva Aug. 26, 2020, 7:25 p.m. UTC | #4
On Wed, Aug 26, 2020 at 04:16:23PM +0200, Peter Rosin wrote:
> On 2020-08-26 16:17, Gustavo A. R. Silva wrote:
> >> And just to be explicit, this fix is for 5.9.
> >>
> >> Acked-by: Peter Rosin <peda@axentia.se>
> >>
> > 
> > If you don't mind I can add this to my tree for 5.9-rc4
> > and send it directly to Linus.
> 
> Fine by me, Jonathan might think differently but I can't find a reason why.
> Just about nothing is happening in that file and the risk for conflicts is
> negligible.
> 

OK. In the meantime, I have added this to my -next tree and queued it up
for 5.9-rc3.

Thanks
--
Gustavo
Jonathan Cameron Aug. 29, 2020, 3:52 p.m. UTC | #5
On Wed, 26 Aug 2020 14:25:29 -0500
"Gustavo A. R. Silva" <gustavoars@kernel.org> wrote:

> On Wed, Aug 26, 2020 at 04:16:23PM +0200, Peter Rosin wrote:
> > On 2020-08-26 16:17, Gustavo A. R. Silva wrote:  
> > >> And just to be explicit, this fix is for 5.9.
> > >>
> > >> Acked-by: Peter Rosin <peda@axentia.se>
> > >>  
> > > 
> > > If you don't mind I can add this to my tree for 5.9-rc4
> > > and send it directly to Linus.  
> > 
> > Fine by me, Jonathan might think differently but I can't find a reason why.
> > Just about nothing is happening in that file and the risk for conflicts is
> > negligible.
> >   
> 
> OK. In the meantime, I have added this to my -next tree and queued it up
> for 5.9-rc3.
Absolutely fine by me.

Thanks,

Jonathan

> 
> Thanks
> --
> Gustavo
diff mbox series

Patch

diff --git a/drivers/iio/dac/dpot-dac.c b/drivers/iio/dac/dpot-dac.c
index be61c3b01e8b..1a9609eda5c5 100644
--- a/drivers/iio/dac/dpot-dac.c
+++ b/drivers/iio/dac/dpot-dac.c
@@ -74,10 +74,11 @@  static int dpot_dac_read_raw(struct iio_dev *indio_dev,
 		case IIO_VAL_INT:
 			/*
 			 * Convert integer scale to fractional scale by
-			 * setting the denominator (val2) to one, and...
+			 * setting the denominator (val2) to one...
 			 */
 			*val2 = 1;
 			ret = IIO_VAL_FRACTIONAL;
+			/* ...and fall through. Say it again for GCC. */
 			fallthrough;
 		case IIO_VAL_FRACTIONAL:
 			*val *= regulator_get_voltage(dac->vref) / 1000;