// Copyright 2018 The Fuchsia Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include #include extern zx_status_t platform_proxy_create(void* ctx, zx_device_t* parent, const char* name, const char* args, zx_handle_t rpc_channel); static zx_driver_ops_t platform_bus_proxy_driver_ops = { .version = DRIVER_OPS_VERSION, .create = platform_proxy_create, }; ZIRCON_DRIVER_BEGIN(platform_bus_proxy, platform_bus_proxy_driver_ops, "zircon", "0.1", 1) BI_MATCH_IF(EQ, BIND_PROTOCOL, ZX_PROTOCOL_PLATFORM_PROXY), ZIRCON_DRIVER_END(platform_bus_proxy)