linux/drivers/fpga/dfl-fme-br.c

// SPDX-License-Identifier: GPL-2.0
/*
 * FPGA Bridge Driver for FPGA Management Engine (FME)
 *
 * Copyright (C) 2017-2018 Intel Corporation, Inc.
 *
 * Authors:
 *   Wu Hao <[email protected]>
 *   Joseph Grecco <[email protected]>
 *   Enno Luebbers <[email protected]>
 *   Tim Whisonant <[email protected]>
 *   Ananda Ravuri <[email protected]>
 *   Henry Mitchel <[email protected]>
 */

#include <linux/module.h>
#include <linux/fpga/fpga-bridge.h>

#include "dfl.h"
#include "dfl-fme-pr.h"

struct fme_br_priv {};

static int fme_bridge_enable_set(struct fpga_bridge *bridge, bool enable)
{}

static const struct fpga_bridge_ops fme_bridge_ops =;

static int fme_br_probe(struct platform_device *pdev)
{}

static void fme_br_remove(struct platform_device *pdev)
{}

static struct platform_driver fme_br_driver =;

module_platform_driver();

MODULE_DESCRIPTION();
MODULE_AUTHOR();
MODULE_LICENSE();
MODULE_ALIAS();