[PATCH] sata_sis: Fix typo in sata port2 initialisation
authorArnaud Patard <apatard@mandriva.com>
Mon, 12 Sep 2005 22:36:45 +0000 (00:36 +0200)
committerJeff Garzik <jgarzik@pobox.com>
Wed, 14 Sep 2005 12:21:34 +0000 (08:21 -0400)
This patch fixes a nasty typo I introduced in my previous patch (commit
f2c853bca542f5ac0b036377637192a74f2091c2). The right offset of the
second port in pure sata mode is 64 and not 0x64.
Thanks to Martin Schuster for pointing this to me

Signed-off-by: Arnaud Patard <apatard@mandriva.com>
 ---
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
drivers/scsi/sata_sis.c

index a63f931..237c198 100644 (file)
@@ -289,7 +289,7 @@ static int sis_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
        if (ent->device != 0x182) {
                if ((pmr & SIS_PMR_COMBINED) == 0) {
                        printk(KERN_INFO "sata_sis: Detected SiS 180/181 chipset in SATA mode\n");
-                       port2_start=0x64;
+                       port2_start = 64;
                }
                else {
                        printk(KERN_INFO "sata_sis: Detected SiS 180/181 chipset in combined mode\n");