summaryrefslogtreecommitdiffstats
path: root/vendor/r-efi/src/vendor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/r-efi/src/vendor.rs')
-rw-r--r--vendor/r-efi/src/vendor.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/r-efi/src/vendor.rs b/vendor/r-efi/src/vendor.rs
new file mode 100644
index 000000000..d931b8fc3
--- /dev/null
+++ b/vendor/r-efi/src/vendor.rs
@@ -0,0 +1,10 @@
+//! UEFI Vendor Protocols
+//!
+//! Many vendor protocols are not part of the official specification. But we
+//! still allow importing them here, so we have a central place to collect
+//! them. Note that we separate them by vendor-name, which is not the best
+//! name-space but should be acceptible.
+
+pub mod intel {
+ pub mod console_control;
+}