summaryrefslogtreecommitdiff
path: root/include/linux/firmware.h
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2020-04-15 18:45:00 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-04-17 09:59:39 +0200
commitab7c1e163b525316a870a494dd4ea196e7a6c455 (patch)
tree4805407ddcd40f0da783d044c0810829d9a8f6d0 /include/linux/firmware.h
parent8f3d9f354286745c751374f5f1fcafee6b3f3136 (diff)
firmware: Drop unused pages field from struct firmware
The struct firmware contains a page table pointer that was used only internally in the past. Since the actual page tables are referred from struct fw_priv and should be never from struct firmware, we can drop this unused field gracefully. Signed-off-by: Takashi Iwai <tiwai@suse.de> Acked-by: Luis Chamberlain <mcgrof@kernel.org> Link: https://lore.kernel.org/r/20200415164500.28749-1-tiwai@suse.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/firmware.h')
-rw-r--r--include/linux/firmware.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/firmware.h b/include/linux/firmware.h
index 4bbd0afd91b7..cb3e2c06ed8a 100644
--- a/include/linux/firmware.h
+++ b/include/linux/firmware.h
@@ -12,7 +12,6 @@
struct firmware {
size_t size;
const u8 *data;
- struct page **pages;
/* firmware loader private fields */
void *priv;