diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-09-28 23:38:52 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-09-28 23:38:52 +0400 |
commit | 7268e3c4b5eb8e3206a467d664c6e17773f2d19e (patch) | |
tree | 2b935d680e2a2d65d679b8633d11529dae225c0f /drivers/ata/ahci.c | |
parent | b4d32648c190711177a664af7d51149a8950555e (diff) | |
parent | fad16e7a7f67eef8d33f8ad58850db89382b09ce (diff) | |
download | linux-7268e3c4b5eb8e3206a467d664c6e17773f2d19e.tar.xz |
Merge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev
* 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev:
ahci: fix module refcount breakage introduced by libahci split
Diffstat (limited to 'drivers/ata/ahci.c')
-rw-r--r-- | drivers/ata/ahci.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index ff1c945fba98..99d0e5a51148 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -90,6 +90,10 @@ static int ahci_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg); static int ahci_pci_device_resume(struct pci_dev *pdev); #endif +static struct scsi_host_template ahci_sht = { + AHCI_SHT("ahci"), +}; + static struct ata_port_operations ahci_vt8251_ops = { .inherits = &ahci_ops, .hardreset = ahci_vt8251_hardreset, |