Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

floppy: Correct documentation of driver options when used as a module.

The options have to be passed space-separated and prefixed by "floppy=",
rather than separately and unprefixed.

This fixes <http://bugs.debian.org/726655>.

Signed-off-by: Ben Harris <bjh21@cam.ac.uk>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Ben Harris and committed by
Jens Axboe
f7cb20f0 49c2856a

+3 -3
+3 -3
Documentation/blockdev/floppy.txt
··· 39 39 ============================ 40 40 41 41 If you use the floppy driver as a module, use the following syntax: 42 - modprobe floppy <options> 42 + modprobe floppy floppy="<options>" 43 43 44 44 Example: 45 - modprobe floppy omnibook messages 45 + modprobe floppy floppy="omnibook messages" 46 46 47 47 If you need certain options enabled every time you load the floppy driver, 48 48 you can put: 49 49 50 - options floppy omnibook messages 50 + options floppy floppy="omnibook messages" 51 51 52 52 in a configuration file in /etc/modprobe.d/. 53 53