Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2da8658910580787ced4abc668adfb0f09710efb
Commit:     2da8658910580787ced4abc668adfb0f09710efb
Parent:     6ea7e33ee1b74de9b60327fec1a0cd39afac3983
Author:     Thomas Bogendoerfer <[EMAIL PROTECTED]>
AuthorDate: Wed Jul 11 19:09:36 2007 +0200
Committer:  James Bottomley <[EMAIL PROTECTED]>
CommitDate: Sat Jul 14 19:12:15 2007 -0500

    [SCSI] sni_53c710: Cleanup
    
    - base address is now a physical address; no need to convert it
    - remove not needed error printk in module init function
    
    Signed-off-by: Thomas Bogendoerfer <[EMAIL PROTECTED]>
    Signed-off-by: James Bottomley <[EMAIL PROTECTED]>
---
 drivers/scsi/sni_53c710.c |   10 ++--------
 1 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/drivers/scsi/sni_53c710.c b/drivers/scsi/sni_53c710.c
index a7dfb65..0a6b45b 100644
--- a/drivers/scsi/sni_53c710.c
+++ b/drivers/scsi/sni_53c710.c
@@ -84,7 +84,7 @@ static int __init snirm710_probe(struct platform_device *dev)
 
        hostdata->dev = &dev->dev;
        dma_set_mask(&dev->dev, DMA_32BIT_MASK);
-       hostdata->base = ioremap_nocache(CPHYSADDR(base), 0x100);
+       hostdata->base = ioremap_nocache(base, 0x100);
        hostdata->differential = 0;
 
        hostdata->clock = SNIRM710_CLOCK;
@@ -141,13 +141,7 @@ static struct platform_driver snirm710_driver = {
 
 static int __init snirm710_init(void)
 {
-       int err;
-
-       if ((err = platform_driver_register(&snirm710_driver))) {
-               printk(KERN_ERR "Driver registration failed\n");
-               return err;
-       }
-       return 0;
+       return platform_driver_register(&snirm710_driver);
 }
 
 static void __exit snirm710_exit(void)
-
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