diff options
| author | Geert Uytterhoeven <geert@linux-m68k.org> | 2002-12-27 19:11:23 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-12-27 19:11:23 -0800 |
| commit | 43b1487f08e821dbcc9411aaa7ee9539c03450ee (patch) | |
| tree | 2fec3b9df1221698dbfe403cc1d855c065ae8c55 | |
| parent | a3acfbb615e4e2a4d51f6e6790ac6de396a2fd20 (diff) | |
[PATCH] Amiflop incorrect sti()
Amiga floppy: fix incorrect sti()
| -rw-r--r-- | drivers/block/amiflop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/amiflop.c b/drivers/block/amiflop.c index f28d18733af5..64422bb80d7b 100644 --- a/drivers/block/amiflop.c +++ b/drivers/block/amiflop.c @@ -322,7 +322,7 @@ static void fd_deselect (int drive) get_fdc(drive); save_flags (flags); - sti(); + cli(); selected = -1; |
