Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=98040015bc5d6cea3bd2dcb642fe1e8c4bded8e1
Commit:     98040015bc5d6cea3bd2dcb642fe1e8c4bded8e1
Parent:     7749a8d423c483a51983b666613acda1a4dd9c1b
Author:     [EMAIL PROTECTED] <[EMAIL PROTECTED]>
AuthorDate: Wed Dec 13 13:08:56 2006 +0100
Committer:  Jens Axboe <[EMAIL PROTECTED]>
CommitDate: Wed Dec 13 13:08:56 2006 +0100

    [PATCH 1/2] cciss: map out more memory for config table
    
    This patch maps out more memory for our config table. It's required to reach
    offset 0x214 to disable DMA on the P600. I'm not sure how I lost this hunk.
    Please consider this for inclusion.
    
    Signed-off-by: Mike Miller <[EMAIL PROTECTED]>
    Signed-off-by: Jens Axboe <[EMAIL PROTECTED]>
---
 drivers/block/cciss.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
index ee159ed..8879e95 100644
--- a/drivers/block/cciss.c
+++ b/drivers/block/cciss.c
@@ -2865,7 +2865,7 @@ static int cciss_pci_init(ctlr_info_t *c, struct pci_dev 
*pdev)
 #ifdef CCISS_DEBUG
        printk("address 0 = %x\n", c->paddr);
 #endif                         /* CCISS_DEBUG */
-       c->vaddr = remap_pci_mem(c->paddr, 200);
+       c->vaddr = remap_pci_mem(c->paddr, 0x250);
 
        /* Wait for the board to become ready.  (PCI hotplug needs this.)
         * We poll for up to 120 secs, once per 100ms. */
-
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