[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 <tsbogend@alpha.franken.de> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
6ea7e33ee1
commit
2da8658910
|
@ -84,7 +84,7 @@ static int __init snirm710_probe(struct platform_device *dev)
|
||||||
|
|
||||||
hostdata->dev = &dev->dev;
|
hostdata->dev = &dev->dev;
|
||||||
dma_set_mask(&dev->dev, DMA_32BIT_MASK);
|
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->differential = 0;
|
||||||
|
|
||||||
hostdata->clock = SNIRM710_CLOCK;
|
hostdata->clock = SNIRM710_CLOCK;
|
||||||
|
@ -141,13 +141,7 @@ static struct platform_driver snirm710_driver = {
|
||||||
|
|
||||||
static int __init snirm710_init(void)
|
static int __init snirm710_init(void)
|
||||||
{
|
{
|
||||||
int err;
|
return platform_driver_register(&snirm710_driver);
|
||||||
|
|
||||||
if ((err = platform_driver_register(&snirm710_driver))) {
|
|
||||||
printk(KERN_ERR "Driver registration failed\n");
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __exit snirm710_exit(void)
|
static void __exit snirm710_exit(void)
|
||||||
|
|
Loading…
Reference in New Issue