diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-09-20 05:56:13 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-09-20 05:56:13 -0400 |
commit | 39a90865f07f05343c450e91a56578bb8f69c5e8 (patch) | |
tree | 1d7b5d8f092af89c65ab5d4fc81cca62765e7917 /arch/sh/include/asm/pci.h | |
parent | c524ebf5a6b78d25219d64a05b3876cde719b5ff (diff) |
sh: pci: Use a generic raw spinlock for PCI config access locking.
This copies the pci_config_lock idea from x86 over, allowing us to kill
off a couple of existing private locks. At the same time, these need to
be converted to raw spinlocks for -rt kernels, so we make that change at
the same time. This should make it easier for future parts to get the
locking right instead of inevitable ending up with lock type mismatches.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include/asm/pci.h')
-rw-r--r-- | arch/sh/include/asm/pci.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sh/include/asm/pci.h b/arch/sh/include/asm/pci.h index 8bd952fcf3ba..f0efe97f1750 100644 --- a/arch/sh/include/asm/pci.h +++ b/arch/sh/include/asm/pci.h | |||
@@ -37,6 +37,8 @@ struct pci_channel { | |||
37 | }; | 37 | }; |
38 | 38 | ||
39 | /* arch/sh/drivers/pci/pci.c */ | 39 | /* arch/sh/drivers/pci/pci.c */ |
40 | extern raw_spinlock_t pci_config_lock; | ||
41 | |||
40 | extern int register_pci_controller(struct pci_channel *hose); | 42 | extern int register_pci_controller(struct pci_channel *hose); |
41 | extern void pcibios_report_status(unsigned int status_mask, int warn); | 43 | extern void pcibios_report_status(unsigned int status_mask, int warn); |
42 | 44 | ||