summaryrefslogtreecommitdiff
path: root/drivers/firmware/efi/embedded-firmware.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-07-27 12:14:28 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-07-27 12:14:28 +0200
commit280c7f95f858b103e62d84cae2d5ed9f5cf54d41 (patch)
tree96d9174ec8242b679857c67aaf9c9ec21de7d950 /drivers/firmware/efi/embedded-firmware.h
parent4fb60b158afd3ac9e0fe9975aa476213f5cc0a4d (diff)
Revert "test_firmware: Test platform fw loading on non-EFI systems"
This reverts commit 2d38dbf89a06d0f689daec9842c5d3295c49777f as it broke the build in linux-next Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Fixes: 2d38dbf89a06 ("test_firmware: Test platform fw loading on non-EFI systems") Cc: stable@vger.kernel.org Cc: Scott Branden <scott.branden@broadcom.com> Cc: Kees Cook <keescook@chromium.org> Link: https://lore.kernel.org/r/20200727165539.0e8797ab@canb.auug.org.au Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/firmware/efi/embedded-firmware.h')
-rw-r--r--drivers/firmware/efi/embedded-firmware.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/drivers/firmware/efi/embedded-firmware.h b/drivers/firmware/efi/embedded-firmware.h
deleted file mode 100644
index 34113316d068..000000000000
--- a/drivers/firmware/efi/embedded-firmware.h
+++ /dev/null
@@ -1,19 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-#ifndef _EFI_EMBEDDED_FW_INTERNAL_H_
-#define _EFI_EMBEDDED_FW_INTERNAL_H_
-
-/*
- * This struct and efi_embedded_fw_list are private to the efi-embedded fw
- * implementation they only in separate header for use by lib/test_firmware.c.
- */
-struct efi_embedded_fw {
- struct list_head list;
- const char *name;
- const u8 *data;
- size_t length;
-};
-
-extern struct list_head efi_embedded_fw_list;
-extern bool efi_embedded_fw_checked;
-
-#endif /* _EFI_EMBEDDED_FW_INTERNAL_H_ */