1802d0beec
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 655 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Richard Fontana <rfontana@redhat.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190527070034.575739538@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
24 lines
573 B
C
24 lines
573 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Intel MIC Platform Software Stack (MPSS)
|
|
*
|
|
* Copyright(c) 2014 Intel Corporation.
|
|
*
|
|
* Intel SCIF driver.
|
|
*/
|
|
#ifndef _SCIF_PEER_BUS_H_
|
|
#define _SCIF_PEER_BUS_H_
|
|
|
|
#include <linux/device.h>
|
|
#include <linux/mic_common.h>
|
|
#include <linux/scif.h>
|
|
|
|
struct scif_dev;
|
|
|
|
void scif_add_peer_device(struct work_struct *work);
|
|
void scif_peer_register_device(struct scif_dev *sdev);
|
|
int scif_peer_unregister_device(struct scif_dev *scifdev);
|
|
int scif_peer_bus_init(void);
|
|
void scif_peer_bus_exit(void);
|
|
#endif /* _SCIF_PEER_BUS_H */
|