blob: 3bdc4e01a5bc78eb0806c1d25e9a811f575489c7 [file] [log] [blame]
// Copyright 2019 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 <lib/ddk/driver.h>
#include <lib/ddk/platform-defs.h>
#include "src/devices/gpio/drivers/mt-8167/mt-8167-bind.h"
namespace gpio {
extern zx_status_t mt8167_gpio_bind(void* ctx, zx_device_t* parent);
static constexpr zx_driver_ops_t driver_ops = []() {
zx_driver_ops_t ops = {};
ops.version = DRIVER_OPS_VERSION;
ops.bind = mt8167_gpio_bind;
return ops;
}();
} // namespace gpio
ZIRCON_DRIVER(mt8167_gpio, gpio::driver_ops, "zircon", "0.1");