diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-02-19 01:41:25 +0100 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-02-19 01:41:25 +0100 |
commit | d684b21f89b96af3adc06877f29fd9f5214b23c8 (patch) | |
tree | 14e6ef77ce5f5cdab097095f7b0197a74fe14c50 /drivers/ide/legacy | |
parent | ef709165d8de1ba9dd3cd5e05dbabf71dc32d883 (diff) | |
download | op-kernel-dev-d684b21f89b96af3adc06877f29fd9f5214b23c8.zip op-kernel-dev-d684b21f89b96af3adc06877f29fd9f5214b23c8.tar.gz |
falconide: locking bugfix
commit 8ac4ce742c66100931b6f2d7a36b0df08bc721fe ("ide: fix host drivers
depending on ide_generic to probe for interfaces (take 2)") moved probing
to falconide but forgot to take care of Atari specific locking - fix it.
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Michael Schmitz <schmitz@debian.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/legacy')
-rw-r--r-- | drivers/ide/legacy/falconide.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ide/legacy/falconide.c b/drivers/ide/legacy/falconide.c index 07bf129..8949ce7 100644 --- a/drivers/ide/legacy/falconide.c +++ b/drivers/ide/legacy/falconide.c @@ -84,7 +84,9 @@ static int __init falconide_init(void) ide_init_port_data(hwif, index); ide_init_port_hw(hwif, &hw); + ide_get_lock(NULL, NULL); ide_device_add(idx, NULL); + ide_release_lock(); } return 0; |