bind/ddk_bind_constants.rs
1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Constants taken from <ddk/binding.h>.
6
7pub const BIND_FLAGS: u32 = 0;
8
9pub const BIND_PROTOCOL: u32 = 1;
10
11pub const BIND_AUTOBIND: u32 = 2;