summaryrefslogtreecommitdiff
path: root/include/efi_driver.h
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-02-12 12:55:28 +0100
committerTom Rini <trini@konsulko.com>2018-02-13 23:24:22 -0500
commit0850d7f7bf3b2ccf41cdcf45b174f683ba64827f (patch)
treee2652b31e6dd7bf267175d1116dbf9dd731ee5a3 /include/efi_driver.h
parent80ee4fc50473a34dbf69734c774ba28e9fdf22a3 (diff)
efi_driver: comment struct efi_driver_ops
Provide description for struct efi_driver_ops. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/efi_driver.h')
-rw-r--r--include/efi_driver.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/efi_driver.h b/include/efi_driver.h
index 2bbe26c6e3..010e55a473 100644
--- a/include/efi_driver.h
+++ b/include/efi_driver.h
@@ -13,6 +13,18 @@
#include <dm.h>
#include <efi_loader.h>
+/*
+ * Operations supported by an EFI driver with respect to the EFI uclass
+ *
+ * @protocol The GUID of the protocol which is consumed by the
+ * driver. This GUID is used by the EFI uclass in the
+ * supports() and start() methods of the
+ * EFI_DRIVER_BINDING_PROTOCOL.
+ * @child_protocol Protocol supported by the child handles generated by
+ * the EFI driver.
+ * @bind Function called by the EFI uclass to attach the
+ * driver to EFI driver to a handle.
+ */
struct efi_driver_ops {
const efi_guid_t *protocol;
const efi_guid_t *child_protocol;