mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-18 23:18:20 +00:00
Staging: meilhaus: unsigned won't get negative after subtraction
Since unsigned, it won't get negative after subtraction. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
3f4577bff8
commit
a44522b20d
@ -2825,10 +2825,11 @@ int inline ao_stop_immediately(me6000_ao_subdevice_t * instance)
|
||||
int i;
|
||||
uint32_t single_mask;
|
||||
|
||||
single_mask =
|
||||
(instance->ao_idx - ME6000_AO_SINGLE_STATUS_OFFSET <
|
||||
0) ? 0x0000 : (0x0001 << (instance->ao_idx -
|
||||
ME6000_AO_SINGLE_STATUS_OFFSET));
|
||||
if (instance->ao_idx < ME6000_AO_SINGLE_STATUS_OFFSET)
|
||||
single_mask = 0x0000;
|
||||
else
|
||||
single_mask = 0x0001 << (instance->ao_idx -
|
||||
ME6000_AO_SINGLE_STATUS_OFFSET);
|
||||
|
||||
timeout =
|
||||
(instance->hardware_stop_delay >
|
||||
|
Loading…
Reference in New Issue
Block a user