Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b8f106570f20a7a98a18a14c2d11d65f581c2808
Commit:     b8f106570f20a7a98a18a14c2d11d65f581c2808
Parent:     53c96b41742a2dadd14e65c23fc119f2a2fd9f05
Author:     Stefan Richter <[EMAIL PROTECTED]>
AuthorDate: Fri May 11 23:04:08 2007 +0200
Committer:  Stefan Richter <[EMAIL PROTECTED]>
CommitDate: Tue Jul 10 00:07:42 2007 +0200

    firewire: fw-sbp2: remove unused struct member
    
    cleanup after support of single-buffer requests was dropped
    
    Signed-off-by: Stefan Richter <[EMAIL PROTECTED]>
    Signed-off-by: Kristian Hoegsberg <[EMAIL PROTECTED]>
---
 drivers/firewire/fw-sbp2.c |    6 ------
 1 files changed, 0 insertions(+), 6 deletions(-)

diff --git a/drivers/firewire/fw-sbp2.c b/drivers/firewire/fw-sbp2.c
index a98d391..25f2aa4 100644
--- a/drivers/firewire/fw-sbp2.c
+++ b/drivers/firewire/fw-sbp2.c
@@ -207,7 +207,6 @@ struct sbp2_command_orb {
 
        struct sbp2_pointer page_table[SG_ALL];
        dma_addr_t page_table_bus;
-       dma_addr_t request_buffer_bus;
 };
 
 /*
@@ -882,11 +881,6 @@ complete_command_orb(struct sbp2_orb *base_orb, struct 
sbp2_status *status)
                dma_unmap_single(device->card->device, orb->page_table_bus,
                                 sizeof(orb->page_table_bus), DMA_TO_DEVICE);
 
-       if (orb->request_buffer_bus != 0)
-               dma_unmap_single(device->card->device, orb->request_buffer_bus,
-                                sizeof(orb->request_buffer_bus),
-                                DMA_FROM_DEVICE);
-
        orb->cmd->result = result;
        orb->done(orb->cmd);
        kfree(orb);
-
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