lkml.org 
[lkml]   [2005]   [Jan]   [17]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH] PCI: Lock initializer cleanup - batch 4
Date
From
ChangeSet 1.2329.2.7, 2005/01/14 15:58:57-08:00, tglx@linutronix.de

[PATCH] PCI: Lock initializer cleanup - batch 4

Use the new lock initializers DEFINE_SPIN_LOCK and DEFINE_RW_LOCK

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>


drivers/pci/access.c | 2 +-
drivers/pci/msi.c | 2 +-
drivers/pci/search.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)


diff -Nru a/drivers/pci/access.c b/drivers/pci/access.c
--- a/drivers/pci/access.c 2005-01-17 13:55:40 -08:00
+++ b/drivers/pci/access.c 2005-01-17 13:55:40 -08:00
@@ -7,7 +7,7 @@
* configuration space.
*/

-static spinlock_t pci_lock = SPIN_LOCK_UNLOCKED;
+static DEFINE_SPINLOCK(pci_lock);

/*
* Wrappers for all PCI configuration access functions. They just check
diff -Nru a/drivers/pci/msi.c b/drivers/pci/msi.c
--- a/drivers/pci/msi.c 2005-01-17 13:55:40 -08:00
+++ b/drivers/pci/msi.c 2005-01-17 13:55:40 -08:00
@@ -22,7 +22,7 @@

#include "msi.h"

-static spinlock_t msi_lock = SPIN_LOCK_UNLOCKED;
+static DEFINE_SPINLOCK(msi_lock);
static struct msi_desc* msi_desc[NR_IRQS] = { [0 ... NR_IRQS-1] = NULL };
static kmem_cache_t* msi_cachep;

diff -Nru a/drivers/pci/search.c b/drivers/pci/search.c
--- a/drivers/pci/search.c 2005-01-17 13:55:40 -08:00
+++ b/drivers/pci/search.c 2005-01-17 13:55:40 -08:00
@@ -13,7 +13,7 @@
#include <linux/interrupt.h>
#include "pci.h"

-spinlock_t pci_bus_lock = SPIN_LOCK_UNLOCKED;
+DEFINE_SPINLOCK(pci_bus_lock);

static struct pci_bus * __devinit
pci_do_find_bus(struct pci_bus* bus, unsigned char busnr)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 14:09    [W:1.547 / U:1.112 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site