1// Copyright 2016 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#include <ddk/device.h>
6#include <ddk/driver.h>
7
8#include <zircon/types.h>
9
10#include <intel-serialio/serialio.h>
11
12zx_status_t intel_serialio_bind_spi(zx_device_t* dev) {
13    // Not implemented yet.
14    return ZX_ERR_NOT_SUPPORTED;
15}
16