summary refs log tree commit diff
path: root/virtio-bindings/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'virtio-bindings/src/lib.rs')
-rw-r--r--virtio-bindings/src/lib.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/virtio-bindings/src/lib.rs b/virtio-bindings/src/lib.rs
new file mode 100644
index 0000000..db53286
--- /dev/null
+++ b/virtio-bindings/src/lib.rs
@@ -0,0 +1,15 @@
+// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
+// SPDX-License-Identifier: Apache-2.0
+//
+// Portions Copyright 2017 The Chromium OS Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE-BSD-3-Clause file.
+
+#![allow(clippy::all)]
+#![allow(non_upper_case_globals)]
+#![allow(non_camel_case_types)]
+#![allow(non_snake_case)]
+
+pub mod virtio_blk;
+pub mod virtio_net;
+pub mod virtio_ring;