blob: 29d038422fe5e98029ad241cdc2f59630c353f0d [file] [log] [blame]
// Copyright 2017 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 <ddk/device.h>
#include <ddk/driver.h>
#include <ddk/binding.h>
#include <zircon/types.h>
extern zx_status_t hidctl_bind(void* ctx, zx_device_t* device);
static zx_driver_ops_t hidctl_driver_ops = {
.version = DRIVER_OPS_VERSION,
.bind = hidctl_bind,
};
ZIRCON_DRIVER_BEGIN(hidctl, hidctl_driver_ops, "zircon", "0.1", 1)
BI_MATCH_IF(EQ, BIND_PROTOCOL, ZX_PROTOCOL_MISC_PARENT),
ZIRCON_DRIVER_END(hidctl)