diff options
| author | Luis Chamberlain <[email protected]> | 2021-10-21 08:58:37 -0700 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2021-10-22 14:13:53 +0200 |
| commit | e2e2c0f20f321b0ec36e8bde467259c0adf1fecb (patch) | |
| tree | 92380a9abba66e271020290cffd172f9a9bb3266 /include/linux | |
| parent | 9d48960414c708f5d1327aa8b90664cf3467c480 (diff) | |
firmware_loader: move struct builtin_fw to the only place used
Now that x86 doesn't abuse picking at internals to the firmware
loader move out the built-in firmware struct to its only user.
Reviewed-by: Borislav Petkov <[email protected]>
Signed-off-by: Luis Chamberlain <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/firmware.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/firmware.h b/include/linux/firmware.h index 34e8d5844fa0..3b057dfc8284 100644 --- a/include/linux/firmware.h +++ b/include/linux/firmware.h @@ -25,12 +25,6 @@ struct device; * FW_LOADER=m */ #ifdef CONFIG_FW_LOADER -struct builtin_fw { - char *name; - void *data; - unsigned long size; -}; - bool firmware_request_builtin(struct firmware *fw, const char *name); #else static inline bool firmware_request_builtin(struct firmware *fw, |