diff options
author | Dan Williams <dan.j.williams@intel.com> | 2015-11-12 03:37:12 +0300 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2015-11-16 19:30:12 +0300 |
commit | f46c4bd16e26eaf85f82cf95f4c77ade5302171d (patch) | |
tree | 27075157988a57686e42d1f244a3503ccca87cf4 | |
parent | a6b7fb764ed2a6b7bb1ac96d93c06787aa589092 (diff) | |
download | linux-f46c4bd16e26eaf85f82cf95f4c77ade5302171d.tar.xz |
ahci: kill 'intr_status'
This field in achi_port_priv was only used to support threaded
interrupts. Now that we are hardirq only it can be deleted.
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
-rw-r--r-- | drivers/ata/ahci.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/ata/ahci.h b/drivers/ata/ahci.h index 9e60c50b2103..878470f9c3e2 100644 --- a/drivers/ata/ahci.h +++ b/drivers/ata/ahci.h @@ -309,7 +309,6 @@ struct ahci_port_priv { unsigned int ncq_saw_d2h:1; unsigned int ncq_saw_dmas:1; unsigned int ncq_saw_sdb:1; - atomic_t intr_status; /* interrupts to handle */ spinlock_t lock; /* protects parent ata_port */ u32 intr_mask; /* interrupts to enable */ bool fbs_supported; /* set iff FBS is supported */ |