* [PATCH] tiny zalon cleanups
@ 2003-09-20 9:30 Christoph Hellwig
0 siblings, 0 replies; only message in thread
From: Christoph Hellwig @ 2003-09-20 9:30 UTC (permalink / raw)
To: James Bottomley; +Cc: linux-scsi
Rename zalon_scsi_callback to the more sensible zalon_probe and fix
a few tiny indentation issues.
--- 1.8/drivers/scsi/zalon.c Thu Sep 11 19:46:12 2003
+++ edited/drivers/scsi/zalon.c Sat Sep 20 10:05:53 2003
@@ -99,7 +99,7 @@
};
static int __init
-zalon_scsi_callback(struct parisc_device *dev)
+zalon_probe(struct parisc_device *dev)
{
struct gsc_irq gsc_irq;
u32 zalon_vers;
@@ -130,7 +130,7 @@
__raw_writel(gsc_irq.txn_addr | gsc_irq.txn_data, dev->hpa + IO_MODULE_EIM);
- if ( zalon_vers == 0)
+ if (zalon_vers == 0)
printk(KERN_WARNING "%s: Zalon 1.1 or earlier\n", __FUNCTION__);
memset(&device, 0, sizeof(ncr_device));
@@ -150,10 +150,10 @@
device.differential = 2;
host = ncr_attach(&zalon7xx_template, unit, &device);
- if(!host)
+ if (!host)
goto fail;
- if(request_irq(irq, ncr53c8xx_intr, SA_SHIRQ, dev->dev.bus_id, host)) {
+ if (request_irq(irq, ncr53c8xx_intr, SA_SHIRQ, dev->dev.bus_id, host)) {
printk(KERN_ERR "%s: irq problem with %d, detaching\n ",
dev->dev.bus_id, irq);
goto fail;
@@ -200,7 +200,7 @@
static struct parisc_driver zalon_driver = {
.name = "GSC SCSI (Zalon)",
.id_table = zalon_tbl,
- .probe = zalon_scsi_callback,
+ .probe = zalon_probe,
.remove = __devexit_p(zalon_remove),
};
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-09-20 9:30 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-09-20 9:30 [PATCH] tiny zalon cleanups Christoph Hellwig
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox