summaryrefslogtreecommitdiffstats
path: root/drivers/rapidio/switches
diff options
context:
space:
mode:
authorAlexandre Bounine <alexandre.bounine@idt.com>2016-08-02 17:06:52 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2016-08-02 19:35:36 -0400
commit60e377b5c1226d6737786947d0e915ab45d7f188 (patch)
tree501d9a67a54f37c2cbd595af49e1580ae5d1e558 /drivers/rapidio/switches
parent06e1b2497ca4783f5f9997b09c77d93aeea69ec1 (diff)
rapidio/idt_gen2: fix locking warning
Fix lockdep warning during device probing: move sysfs initialization out of code protected by a spin lock. Link: http://lkml.kernel.org/r/1469125134-16523-10-git-send-email-alexandre.bounine@idt.com Signed-off-by: Alexandre Bounine <alexandre.bounine@idt.com> Cc: Matt Porter <mporter@kernel.crashing.org> Cc: Andre van Herk <andre.van.herk@prodrive-technologies.com> Cc: Barry Wood <barry.wood@idt.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rapidio/switches')
-rw-r--r--drivers/rapidio/switches/idt_gen2.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/rapidio/switches/idt_gen2.c b/drivers/rapidio/switches/idt_gen2.c
index 9f7fe21580bb..e67b923b1ca6 100644
--- a/drivers/rapidio/switches/idt_gen2.c
+++ b/drivers/rapidio/switches/idt_gen2.c
@@ -436,10 +436,11 @@ static int idtg2_probe(struct rio_dev *rdev, const struct rio_device_id *id)
436 RIO_STD_RTE_DEFAULT_PORT, IDT_NO_ROUTE); 436 RIO_STD_RTE_DEFAULT_PORT, IDT_NO_ROUTE);
437 } 437 }
438 438
439 spin_unlock(&rdev->rswitch->lock);
440
439 /* Create device-specific sysfs attributes */ 441 /* Create device-specific sysfs attributes */
440 idtg2_sysfs(rdev, true); 442 idtg2_sysfs(rdev, true);
441 443
442 spin_unlock(&rdev->rswitch->lock);
443 return 0; 444 return 0;
444} 445}
445 446
@@ -452,11 +453,9 @@ static void idtg2_remove(struct rio_dev *rdev)
452 return; 453 return;
453 } 454 }
454 rdev->rswitch->ops = NULL; 455 rdev->rswitch->ops = NULL;
455 456 spin_unlock(&rdev->rswitch->lock);
456 /* Remove device-specific sysfs attributes */ 457 /* Remove device-specific sysfs attributes */
457 idtg2_sysfs(rdev, false); 458 idtg2_sysfs(rdev, false);
458
459 spin_unlock(&rdev->rswitch->lock);
460} 459}
461 460
462static struct rio_device_id idtg2_id_table[] = { 461static struct rio_device_id idtg2_id_table[] = {