Skip to content

Commit c1d0c3f

Browse files
elmarcomstsirkin
authored andcommitted
fw_cfg: fix the command line module name
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Acked-by: Gabriel Somlo <somlo@cmu.edu> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
1 parent a72b69d commit c1d0c3f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

drivers/firmware/qemu_fw_cfg.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* and select subsets of aarch64), a Device Tree node (on arm), or using
1111
* a kernel module (or command line) parameter with the following syntax:
1212
*
13-
* [fw_cfg.]ioport=<size>@<base>[:<ctrl_off>:<data_off>]
13+
* [qemu_fw_cfg.]ioport=<size>@<base>[:<ctrl_off>:<data_off>]
1414
* or
15-
* [fw_cfg.]mmio=<size>@<base>[:<ctrl_off>:<data_off>]
15+
* [qemu_fw_cfg.]mmio=<size>@<base>[:<ctrl_off>:<data_off>]
1616
*
1717
* where:
1818
* <size> := size of ioport or mmio range
@@ -21,9 +21,9 @@
2121
* <data_off> := (optional) offset of data register
2222
*
2323
* e.g.:
24-
* fw_cfg.ioport=2@0x510:0:1 (the default on x86)
24+
* qemu_fw_cfg.ioport=2@0x510:0:1 (the default on x86)
2525
* or
26-
* fw_cfg.mmio=0xA@0x9020000:8:0 (the default on arm)
26+
* qemu_fw_cfg.mmio=0xA@0x9020000:8:0 (the default on arm)
2727
*/
2828

2929
#include <linux/module.h>

0 commit comments

Comments
 (0)