Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=053b30808f693b2e4bbef2955c2dad0fcacdb806
Commit:     053b30808f693b2e4bbef2955c2dad0fcacdb806
Parent:     15536221d1f09ae7707f70a183045ee20d8bcf17
Author:     Kristian Høgsberg <[EMAIL PROTECTED]>
AuthorDate: Tue Apr 10 18:11:17 2007 -0400
Committer:  Stefan Richter <[EMAIL PROTECTED]>
CommitDate: Thu Apr 12 00:18:57 2007 +0200

    firewire: Check for CONTEXT_RUN not CONTEXT_ACTIVE when starting AT DMA 
context.
    
    Doh, bad typo...
    
    Signed-off-by: Kristian Høgsberg <[EMAIL PROTECTED]>
    Signed-off-by: Stefan Richter <[EMAIL PROTECTED]>
---
 drivers/firewire/fw-ohci.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/firewire/fw-ohci.c b/drivers/firewire/fw-ohci.c
index 2229ea0..34eb468 100644
--- a/drivers/firewire/fw-ohci.c
+++ b/drivers/firewire/fw-ohci.c
@@ -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;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to