diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2013-02-23 23:30:22 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-02-27 14:12:51 -0500 |
commit | f45dd363bee071a62e32398a0ae4a0214b8029eb (patch) | |
tree | 65d58fd94711c1e4003ed28317302fe2425676cd /drivers/bcma | |
parent | 838f427955dcfd16858b0108ce29029da0d56a4e (diff) | |
download | op-kernel-dev-f45dd363bee071a62e32398a0ae4a0214b8029eb.zip op-kernel-dev-f45dd363bee071a62e32398a0ae4a0214b8029eb.tar.gz |
bcma: init spin lock
This spin lock was not initialized.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/bcma')
-rw-r--r-- | drivers/bcma/driver_pci_host.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/bcma/driver_pci_host.c b/drivers/bcma/driver_pci_host.c index 221f8bb..25de387 100644 --- a/drivers/bcma/driver_pci_host.c +++ b/drivers/bcma/driver_pci_host.c @@ -405,6 +405,8 @@ void __devinit bcma_core_pci_hostmode_init(struct bcma_drv_pci *pc) return; } + spin_lock_init(&pc_host->cfgspace_lock); + pc->host_controller = pc_host; pc_host->pci_controller.io_resource = &pc_host->io_resource; pc_host->pci_controller.mem_resource = &pc_host->mem_resource; |