]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
aha1740: switch to ->show_info()
authorAl Viro <viro@zeniv.linux.org.uk>
Sun, 31 Mar 2013 07:15:00 +0000 (03:15 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Tue, 9 Apr 2013 18:13:23 +0000 (14:13 -0400)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
drivers/scsi/aha1740.c

index df775e6ba5796c6cc8be7ed53a50fd4f269e73ac..5f3101797c93977c98cf047797868df0d00da5c0 100644 (file)
@@ -106,33 +106,14 @@ static inline dma_addr_t ecb_cpu_to_dma (struct Scsi_Host *host, void *cpu)
        return hdata->ecb_dma_addr + offset;
 }
 
-static int aha1740_proc_info(struct Scsi_Host *shpnt, char *buffer,
-                            char **start, off_t offset,
-                            int length, int inout)
+static int aha1740_show_info(struct seq_file *m, struct Scsi_Host *shpnt)
 {
-       int len;
-       struct aha1740_hostdata *host;
-
-       if (inout)
-               return-ENOSYS;
-
-       host = HOSTDATA(shpnt);
-
-       len = sprintf(buffer, "aha174x at IO:%lx, IRQ %d, SLOT %d.\n"
+       struct aha1740_hostdata *host = HOSTDATA(shpnt);
+       seq_printf(m, "aha174x at IO:%lx, IRQ %d, SLOT %d.\n"
                      "Extended translation %sabled.\n",
                      shpnt->io_port, shpnt->irq, host->edev->slot,
                      host->translation ? "en" : "dis");
-
-       if (offset > len) {
-               *start = buffer;
-               return 0;
-       }
-
-       *start = buffer + offset;
-       len -= offset;
-       if (len > length)
-               len = length;
-       return len;
+       return 0;
 }
 
 static int aha1740_makecode(unchar *sense, unchar *status)
@@ -556,7 +537,7 @@ static int aha1740_eh_abort_handler (Scsi_Cmnd *dummy)
 static struct scsi_host_template aha1740_template = {
        .module           = THIS_MODULE,
        .proc_name        = "aha1740",
-       .proc_info        = aha1740_proc_info,
+       .show_info        = aha1740_show_info,
        .name             = "Adaptec 174x (EISA)",
        .queuecommand     = aha1740_queuecommand,
        .bios_param       = aha1740_biosparam,