diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2021-06-11 11:34:25 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2021-06-12 10:31:41 +0300 |
commit | 3b86ec63c06147d24a1b48ba0caab5d051cc0d02 (patch) | |
tree | 4fad42ec693f534768651d1ce6aaa0169cdd9c40 /sound/firewire/amdtp-stream-trace.h | |
parent | be471fe332f7f14aa6828010b220d7e6902b91a0 (diff) | |
download | linux-3b86ec63c06147d24a1b48ba0caab5d051cc0d02.tar.xz |
ALSA: firewire-lib: replace in_interrupt() with in_softirq()
Tasklet is used to handle isochronous context of 1394 OHCI. The explicit
usage of in_softirq() may be preferable than in_interrupt().
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Link: https://lore.kernel.org/r/20210611083425.61204-1-o-takashi@sakamocchi.jp
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire/amdtp-stream-trace.h')
-rw-r--r-- | sound/firewire/amdtp-stream-trace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/firewire/amdtp-stream-trace.h b/sound/firewire/amdtp-stream-trace.h index aa53c13b89d3..5fd2aeccdfc2 100644 --- a/sound/firewire/amdtp-stream-trace.h +++ b/sound/firewire/amdtp-stream-trace.h @@ -49,7 +49,7 @@ TRACE_EVENT(amdtp_packet, __entry->data_blocks = data_blocks; __entry->data_block_counter = data_block_counter, __entry->packet_index = packet_index; - __entry->irq = !!in_interrupt(); + __entry->irq = !!in_softirq(); __entry->index = index; ), TP_printk( |