summaryrefslogtreecommitdiff
path: root/drivers/pci/pci.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2009-11-06 22:41:23 +0000
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-11-06 15:06:27 -0800
commite9d1e4921d5b62a80ed02851639249e2548d24f1 (patch)
tree5fff809404f6de05ad610cffcb5b912c7dc049f3 /drivers/pci/pci.c
parent5b5d94487d934be6b0aa966c9acbdf15b07ef627 (diff)
downloadlinux-3.10-e9d1e4921d5b62a80ed02851639249e2548d24f1.tar.gz
linux-3.10-e9d1e4921d5b62a80ed02851639249e2548d24f1.tar.bz2
linux-3.10-e9d1e4921d5b62a80ed02851639249e2548d24f1.zip
PCI: Replace old style lock initializer
SPIN_LOCK_UNLOCKED is deprecated. Use DEFINE_SPINLOCK instead. Make the lock static while at it. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/pci.c')
-rw-r--r--drivers/pci/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index f88de099ef4..f36b4680651 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -2625,7 +2625,7 @@ int pci_set_vga_state(struct pci_dev *dev, bool decode,
#define RESOURCE_ALIGNMENT_PARAM_SIZE COMMAND_LINE_SIZE
static char resource_alignment_param[RESOURCE_ALIGNMENT_PARAM_SIZE] = {0};
-spinlock_t resource_alignment_lock = SPIN_LOCK_UNLOCKED;
+static DEFINE_SPINLOCK(resource_alignment_lock);
/**
* pci_specified_resource_alignment - get resource alignment specified by user.