Commit a2be0626 authored by Varsha Rao's avatar Varsha Rao Committed by Greg Kroah-Hartman

staging: comedi: Remove useless cast.

Variable dac_data is already declared as of type u8. Again explicit type
casting of dac_data to u8, is not required. Hence this patch removes it
by using the following coccinelle script.

@@
type T;
T *ptr;
T p;
@@
(
- (T *)(&p)
+ &p
|
- (T *)ptr
+ ptr
|
- (T *)(ptr)
+ ptr
|
- (T)(p)
+ p
)
Signed-off-by: default avatarVarsha Rao <rvarsha016@gmail.com>
Acked-by: default avatarJulia Lawall <julia.lawall@lip6.fr>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d4938593
...@@ -599,7 +599,7 @@ static int s626_write_trim_dac(struct comedi_device *dev, ...@@ -599,7 +599,7 @@ static int s626_write_trim_dac(struct comedi_device *dev,
* Save the new setpoint in case the application needs to read it back * Save the new setpoint in case the application needs to read it back
* later. * later.
*/ */
devpriv->trim_setpoint[logical_chan] = (u8)dac_data; devpriv->trim_setpoint[logical_chan] = dac_data;
/* Map logical channel number to physical channel number. */ /* Map logical channel number to physical channel number. */
chan = s626_trimchan[logical_chan]; chan = s626_trimchan[logical_chan];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment