mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 22:21:42 +00:00
ALSA: fireface: obsolete usage of ktime_set() for zero assignment
In development period for Linux v4.10, ktime_t became an alias of s64,
instead of union. I forgot it. We can just assign zero, instead of usage
of ktime_set(0, 0).
Fixes: 1917429578
("ALSA: fireface: add transaction support")
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
fa8323bf49
commit
e3a973c69b
@ -21,7 +21,7 @@ static void finish_transmit_midi_msg(struct snd_ff *ff, unsigned int port,
|
||||
|
||||
if (rcode != RCODE_COMPLETE) {
|
||||
/* Transfer the message again, immediately. */
|
||||
ff->next_ktime[port] = ktime_set(0, 0);
|
||||
ff->next_ktime[port] = 0;
|
||||
schedule_work(&ff->rx_midi_work[port]);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user