aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firmware/qemu_fw_cfg.c
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2018-02-28 16:06:09 +0100
committerMichael S. Tsirkin <mst@redhat.com>2018-03-20 03:17:39 +0200
commit59ecab182faf84e76f4a07fee904d41e41f4780c (patch)
tree0d23713045754156bb96d43b3f6cdb5cee3a29dd /drivers/firmware/qemu_fw_cfg.c
parentfw_cfg: fix sparse warnings around FW_CFG_FILE_DIR read (diff)
downloadlinux-dev-59ecab182faf84e76f4a07fee904d41e41f4780c.tar.xz
linux-dev-59ecab182faf84e76f4a07fee904d41e41f4780c.zip
fw_cfg: remove inline from fw_cfg_read_blob()
The function is not small and getting bigger. Let the compiler decide instead. No profiling done, hopefully unnecessary. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers/firmware/qemu_fw_cfg.c')
-rw-r--r--drivers/firmware/qemu_fw_cfg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/firmware/qemu_fw_cfg.c b/drivers/firmware/qemu_fw_cfg.c
index 00ad9b862414..0cc71d028ae3 100644
--- a/drivers/firmware/qemu_fw_cfg.c
+++ b/drivers/firmware/qemu_fw_cfg.c
@@ -77,8 +77,8 @@ static void fw_cfg_sel_endianness(u16 key)
}
/* read chunk of given fw_cfg blob (caller responsible for sanity-check) */
-static inline void fw_cfg_read_blob(u16 key,
- void *buf, loff_t pos, size_t count)
+static void fw_cfg_read_blob(u16 key,
+ void *buf, loff_t pos, size_t count)
{
u32 glk = -1U;
acpi_status status;