Commit c1d0c3f6 authored by Marc-André Lureau's avatar Marc-André Lureau Committed by Michael S. Tsirkin

fw_cfg: fix the command line module name

Signed-off-by: default avatarMarc-André Lureau <marcandre.lureau@redhat.com>
Acked-by: default avatarGabriel Somlo <somlo@cmu.edu>
Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
parent a72b69dc
...@@ -10,9 +10,9 @@ ...@@ -10,9 +10,9 @@
* and select subsets of aarch64), a Device Tree node (on arm), or using * and select subsets of aarch64), a Device Tree node (on arm), or using
* a kernel module (or command line) parameter with the following syntax: * a kernel module (or command line) parameter with the following syntax:
* *
* [fw_cfg.]ioport=<size>@<base>[:<ctrl_off>:<data_off>] * [qemu_fw_cfg.]ioport=<size>@<base>[:<ctrl_off>:<data_off>]
* or * or
* [fw_cfg.]mmio=<size>@<base>[:<ctrl_off>:<data_off>] * [qemu_fw_cfg.]mmio=<size>@<base>[:<ctrl_off>:<data_off>]
* *
* where: * where:
* <size> := size of ioport or mmio range * <size> := size of ioport or mmio range
...@@ -21,9 +21,9 @@ ...@@ -21,9 +21,9 @@
* <data_off> := (optional) offset of data register * <data_off> := (optional) offset of data register
* *
* e.g.: * e.g.:
* fw_cfg.ioport=2@0x510:0:1 (the default on x86) * qemu_fw_cfg.ioport=2@0x510:0:1 (the default on x86)
* or * or
* fw_cfg.mmio=0xA@0x9020000:8:0 (the default on arm) * qemu_fw_cfg.mmio=0xA@0x9020000:8:0 (the default on arm)
*/ */
#include <linux/module.h> #include <linux/module.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment