__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(
 
                // buffer associated to PCM substream to process PCM frames in the buffer, instead
                // of receiving notification of period elapsed by poll wait.
                if (!pcm->runtime->no_period_wakeup) {
-                       if (in_interrupt()) {
+                       if (in_softirq()) {
                                // In software IRQ context for 1394 OHCI.
                                snd_pcm_period_elapsed(pcm);
                        } else {
 static inline void cancel_stream(struct amdtp_stream *s)
 {
        s->packet_index = -1;
-       if (in_interrupt())
+       if (in_softirq())
                amdtp_stream_pcm_abort(s);
        WRITE_ONCE(s->pcm_buffer_pointer, SNDRV_PCM_POS_XRUN);
 }
        if (irq_target && amdtp_stream_running(irq_target)) {
                // In software IRQ context, the call causes dead-lock to disable the tasklet
                // synchronously.
-               if (!in_interrupt())
+               if (!in_softirq())
                        fw_iso_context_flush_completions(irq_target->context);
        }