linux/drivers/staging/greybus/spi.c

// SPDX-License-Identifier: GPL-2.0
/*
 * SPI bridge PHY driver.
 *
 * Copyright 2014-2016 Google Inc.
 * Copyright 2014-2016 Linaro Ltd.
 */

#include <linux/module.h>
#include <linux/greybus.h>

#include "gbphy.h"
#include "spilib.h"

static struct spilib_ops *spilib_ops;

static int gb_spi_probe(struct gbphy_device *gbphy_dev,
			const struct gbphy_device_id *id)
{}

static void gb_spi_remove(struct gbphy_device *gbphy_dev)
{}

static const struct gbphy_device_id gb_spi_id_table[] =;
MODULE_DEVICE_TABLE(gbphy, gb_spi_id_table);

static struct gbphy_driver spi_driver =;

module_gbphy_driver();
MODULE_DESCRIPTION();
MODULE_LICENSE();