mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
2504ba9f59
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 as published by the free software foundation either version 2 of the license 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 53 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190602204653.904365654@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
25 lines
771 B
C
25 lines
771 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
*
|
|
* Copyright (C) 2005 Mike Isely <isely@pobox.com>
|
|
*/
|
|
#ifndef __PVRUSB2_IOREAD_H
|
|
#define __PVRUSB2_IOREAD_H
|
|
|
|
#include "pvrusb2-io.h"
|
|
|
|
struct pvr2_ioread;
|
|
|
|
struct pvr2_ioread *pvr2_ioread_create(void);
|
|
void pvr2_ioread_destroy(struct pvr2_ioread *);
|
|
int pvr2_ioread_setup(struct pvr2_ioread *,struct pvr2_stream *);
|
|
struct pvr2_stream *pvr2_ioread_get_stream(struct pvr2_ioread *);
|
|
void pvr2_ioread_set_sync_key(struct pvr2_ioread *,
|
|
const char *sync_key_ptr,
|
|
unsigned int sync_key_len);
|
|
int pvr2_ioread_set_enabled(struct pvr2_ioread *,int fl);
|
|
int pvr2_ioread_read(struct pvr2_ioread *,void __user *buf,unsigned int cnt);
|
|
int pvr2_ioread_avail(struct pvr2_ioread *);
|
|
|
|
#endif /* __PVRUSB2_IOREAD_H */
|