Commit a44522b2 authored by Roel Kluin's avatar Roel Kluin Committed by Greg Kroah-Hartman

Staging: meilhaus: unsigned won't get negative after subtraction

Since unsigned, it won't get negative after subtraction.
Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 3f4577bf
...@@ -2825,10 +2825,11 @@ int inline ao_stop_immediately(me6000_ao_subdevice_t * instance) ...@@ -2825,10 +2825,11 @@ int inline ao_stop_immediately(me6000_ao_subdevice_t * instance)
int i; int i;
uint32_t single_mask; uint32_t single_mask;
single_mask = if (instance->ao_idx < ME6000_AO_SINGLE_STATUS_OFFSET)
(instance->ao_idx - ME6000_AO_SINGLE_STATUS_OFFSET < single_mask = 0x0000;
0) ? 0x0000 : (0x0001 << (instance->ao_idx - else
ME6000_AO_SINGLE_STATUS_OFFSET)); single_mask = 0x0001 << (instance->ao_idx -
ME6000_AO_SINGLE_STATUS_OFFSET);
timeout = timeout =
(instance->hardware_stop_delay > (instance->hardware_stop_delay >
......
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