Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 053b3080 authored by Kristian Høgsberg's avatar Kristian Høgsberg Committed by Stefan Richter
Browse files

firewire: Check for CONTEXT_RUN not CONTEXT_ACTIVE when starting AT DMA context.



Doh, bad typo...

Signed-off-by: default avatarKristian Høgsberg <krh@redhat.com>
Signed-off-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
parent 15536221
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -662,7 +662,7 @@ at_context_queue_packet(struct context *ctx, struct fw_packet *packet)

	/* If the context isn't already running, start it up. */
	reg = reg_read(ctx->ohci, control_set(ctx->regs));
	if ((reg & CONTEXT_ACTIVE) == 0)
	if ((reg & CONTEXT_RUN) == 0)
		context_run(ctx, 0);

	return 0;